Dear Sirs!

Here is a little fix for rc2speed, when defininig HZ:

OLD:

#ifndef HZ
#ifndef CLK_TCK
#define HZ      100.0
#endif
#else /* CLK_TCK */
#define HZ ((double)CLK_TCK)
#endif

NEW:

#ifndef HZ
#ifndef CLK_TCK
#define HZ      100.0
#else /* CLK_TCK */
#define HZ ((double)CLK_TCK)
#endif
#endif

(Only a #endif is moved)

Sincerely yours: Lorinczy Zsigmond

PS: Then I checked file rc4/rc4speed.c and rc5/rc5speed.c and they are OK.
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to