In message <[EMAIL PROTECTED]> on Fri, 15 Nov 2002 
02:28:11 +1100, "Steven Reddie" <[EMAIL PROTECTED]> said:

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)

Does it work if we change:
     int n;
to:
     unsigned long n;
?

-- 
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]

Reply via email to