Re: 4 pgcrypto regressions failures - 1 unsolved

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: 4 pgcrypto regressions failures - 1 unsolved
Дата
Msg-id 20050711151937.GA77390@winnie.fuhr.org
обсуждение исходный текст
Ответ на Re: 4 pgcrypto regressions failures - 1 unsolved  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: 4 pgcrypto regressions failures - 1 unsolved  (Marko Kreen <marko@l-t.ee>)
Список pgsql-hackers
On Mon, Jul 11, 2005 at 10:39:26AM -0400, Tom Lane wrote:
> Marko Kreen <marko@l-t.ee> writes:
> > They won't matter on older OpenSSL, as the macros will recast
> > again.  But on 0.9.7e the signature is:
> 
> > void DES_ecb3_encrypt(const unsigned char *input, unsigned char *output,
> >               DES_key_schedule *ks1,DES_key_schedule *ks2,
> >               DES_key_schedule *ks3, int enc);
> 
> > so it seems to me that with your patch the warnings will appear
> > on newer OpenSSL.  (Confirmed)
> 
> Grumble --- you're right.  It's probably not worth ifdef'ing the code to
> suppress the warnings on 0.9.7a ...

Hmmm...in 0.9.8 the signature is back to what it was in 0.9.7[a-d]:

void DES_ecb3_encrypt(const_DES_cblock *input, DES_cblock *output,                     DES_key_schedule
*ks1,DES_key_schedule*ks2,                     DES_key_schedule *ks3, int enc);
 

-- 
Michael Fuhr
http://www.fuhr.org/~mfuhr/


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: 4 pgcrypto regressions failures - 1 unsolved
Следующее
От: Marko Kreen
Дата:
Сообщение: Re: 4 pgcrypto regressions failures - 1 unsolved