diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-06-26 23:05:54 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-06-26 23:05:54 +0000 |
commit | 4d0aae8a05ad15193bcc293ff4ec0ad10829889e (patch) | |
tree | dbc463bbd138ca1298231ef31adf4abfc5dc8d81 /imap.c | |
parent | b4105cd81ef08a51b65573abfe77ceb901a28338 (diff) | |
download | fetchmail-4d0aae8a05ad15193bcc293ff4ec0ad10829889e.tar.gz fetchmail-4d0aae8a05ad15193bcc293ff4ec0ad10829889e.tar.bz2 fetchmail-4d0aae8a05ad15193bcc293ff4ec0ad10829889e.zip |
Fix the length checks.
svn path=/trunk/; revision=1123
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -94,11 +94,11 @@ int imap_ok (int sock, char *argbuf) } #ifdef KERBEROS_V4 -#if SIZEOF_INT = 4 +#if SIZEOF_INT == 4 typedef int int32; -#elif SIZEOF_SHORT = 4 +#elif SIZEOF_SHORT == 4 typedef short int32; -#elif SIZEOF_LONG = 4 +#elif SIZEOF_LONG == 4 typedef long int32; #else #error Cannot deduce a 32-bit-type |