These are based on the 1113 snapshot. The first two are warnings, but the
compiler options being used treat warnings as errors.
crypto/aes/aes_cbc.c at lines 84 and 106 need a typecast to avoid
signed/unsigned mismatch warning:
for(n=0; n < len; ++n)
becomes:
for(n=0; n < (int)len; ++n)
apps\ca.c line 1339 needs a typecast:
if(strlen(outdir) >= (j ? BSIZE-j*2-6 : BSIZE-8))
becomes:
if((int)strlen(outdir) >= (j ? BSIZE-j*2-6 : BSIZE-8))
crytpto/buffer/buffer.h needs to include <stddef.h> for size_t
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]