>In bn_div.c, line 241 I get a warning telling me that I can not
>assign a 64 bit value to a 32 bit value. When I leave away the
>'debug' flags in do_nt.bat, everything works fine.
>
>Any ideas?


there is a minor cast error in crypto\bn\bn_div.c.  Replace line 241
which reads:

q=((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0;

with this:

q=(BN_ULONG)((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0;

and all will be fine.

Regards,
Andrew



______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to