Skip to content

Commit 07de4cb

Browse files
committed
Add configure result checks on odbc, per Peter E.
1 parent 1ca717f commit 07de4cb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/interfaces/odbc/md5.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,12 @@ typedef char bool;
3939
#endif /* not C++ */
4040
#endif /* __BEOS__ */
4141

42-
/* #if SIZEOF_UINT8 == 0 Can't get this from configure */
42+
/* Also defined in include/c.h */
43+
#if SIZEOF_UINT8 == 0
4344
typedef unsigned char uint8; /* == 8 bits */
4445
typedef unsigned short uint16; /* == 16 bits */
4546
typedef unsigned int uint32; /* == 32 bits */
46-
/* #endif */
47+
#endif /* SIZEOF_UINT8 == 0 */
4748

4849
extern bool EncryptMD5(const char *passwd, const char *salt,
4950
size_t salt_len, char *buf);

0 commit comments

Comments
 (0)