From 4d0aae8a05ad15193bcc293ff4ec0ad10829889e Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 26 Jun 1997 23:05:54 +0000 Subject: Fix the length checks. svn path=/trunk/; revision=1123 --- imap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'imap.c') 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 -- cgit v1.2.3