aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-06-26 23:05:54 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-06-26 23:05:54 +0000
commit4d0aae8a05ad15193bcc293ff4ec0ad10829889e (patch)
treedbc463bbd138ca1298231ef31adf4abfc5dc8d81 /imap.c
parentb4105cd81ef08a51b65573abfe77ceb901a28338 (diff)
downloadfetchmail-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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/imap.c b/imap.c
index e8837dfa..75533ebf 100644
--- a/imap.c
+++ b/imap.c
@@ -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