Changeset 670 for trunk/storage/authreg_mysql.c
- Timestamp:
- 15/08/08 10:42:02 (5 months ago)
- Files:
-
- 1 modified
-
trunk/storage/authreg_mysql.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/storage/authreg_mysql.c
r647 r670 25 25 #include <unistd.h> 26 26 27 /* Windows does not has the crypt function, let's take DES_crypt from OpenSSL instead */ 28 #if defined(HAVE_OPENSSL_CRYPTO_H) && defined(_WIN32) 29 #include <openssl/des.h> 30 #define crypt DES_crypt 31 #endif 32 27 33 #define MYSQL_LU 1024 /* maximum length of username - should correspond to field length */ 28 34 #define MYSQL_LR 256 /* maximum length of realm - should correspond to field length */
