summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2001-11-28 00:16:53 +0000
committerBruce Momjian2001-11-28 00:16:53 +0000
commitf6e1ebb166137506a5449541d57fcf51c3536d97 (patch)
treef9e79ac972effec2ddf8807c16525f28e02f3428
parent37e55354334fc1ee86a3a3478d8e4a337c340959 (diff)
No longer need define test in md5.h because of Hiroshi's win_md5.c.
-rw-r--r--src/interfaces/odbc/md5.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/interfaces/odbc/md5.h b/src/interfaces/odbc/md5.h
index 748e0a6728d..3daaf16c3fb 100644
--- a/src/interfaces/odbc/md5.h
+++ b/src/interfaces/odbc/md5.h
@@ -1,6 +1,6 @@
/* File: md5.h
*
- * Description: See "md5.c"
+ * Description: See "md5.h"
*
* Comments: See "notice.txt" for copyright and license information.
*
@@ -14,10 +14,6 @@
#include <stdlib.h>
#include <string.h>
-#ifdef WIN32
-#define MD5_ODBC
-#define FRONTEND
-#endif
#define MD5_PASSWD_LEN 35
/* From c.h */
@@ -50,5 +46,4 @@ extern bool md5_hash(const void *buff, size_t len, char *hexsum);
extern bool EncryptMD5(const char *passwd, const char *salt,
size_t salt_len, char *buf);
-
#endif