In message <[EMAIL PROTECTED]> on Fri, 15 Nov 2002
02:28:11 +1100, "Steven Reddie" <[EMAIL PROTECTED]> said:
OK, I've committed fixes. Please try again tomorrow (the 1114
snapshot will be ready then).
smr> These are based on the 1113 snapshot. The first two are warnings, but the
smr> compiler options being used treat warnings as errors.
smr>
smr> crypto/aes/aes_cbc.c at lines 84 and 106 need a typecast to avoid
smr> signed/unsigned mismatch warning:
smr> for(n=0; n < len; ++n)
smr> becomes:
smr> for(n=0; n < (int)len; ++n)
smr>
smr> apps\ca.c line 1339 needs a typecast:
smr> if(strlen(outdir) >= (j ? BSIZE-j*2-6 : BSIZE-8))
smr> becomes:
smr> if((int)strlen(outdir) >= (j ? BSIZE-j*2-6 : BSIZE-8))
smr>
smr> crytpto/buffer/buffer.h needs to include <stddef.h> for size_t
--
Richard Levitte \ Spannv�gen 38, II \ [EMAIL PROTECTED]
Redakteur@Stacken \ S-168 35 BROMMA \ T: +46-8-26 52 47
\ SWEDEN \ or +46-708-26 53 44
Procurator Odiosus Ex Infernis -- [EMAIL PROTECTED]
Member of the OpenSSL development team: http://www.openssl.org/
Unsolicited commercial email is subject to an archival fee of $400.
See <http://www.stacken.kth.se/~levitte/mail/> for more info.
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]