From: Bruce Momjian Date: Thu, 15 Nov 2001 16:16:08 +0000 (+0000) Subject: Update md5.h because it can't get the value from configure. X-Git-Tag: REL7_2_BETA3~63 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c1784a9c7b52c0acee88420aeabd6171be76c6e;p=postgresql Update md5.h because it can't get the value from configure. --- diff --git a/src/interfaces/odbc/md5.h b/src/interfaces/odbc/md5.h index 9b5b0e3396..b8b29d98e3 100644 --- a/src/interfaces/odbc/md5.h +++ b/src/interfaces/odbc/md5.h @@ -39,11 +39,11 @@ typedef char bool; #endif /* not C++ */ #endif /* __BEOS__ */ -#ifndef __BEOS__ /* this shouldn't be required, but is is! */ +/* #if SIZEOF_UINT8 == 0 Can't get this from configure */ typedef unsigned char uint8; /* == 8 bits */ typedef unsigned short uint16; /* == 16 bits */ typedef unsigned int uint32; /* == 32 bits */ -#endif /* __BEOS__ */ +/* #endif */ extern bool EncryptMD5(const char *passwd, const char *salt, size_t salt_len, char *buf);