diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-06-24 16:12:36 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-06-24 16:12:36 +0000 |
commit | 7281d7845c0173e52ba09a97690e47b8c9c8bf42 (patch) | |
tree | 86617090be92285d2a66a2e776149c8cfbc8b58a /imap.c | |
parent | 05f916d86702f642d0a93b5db6c4e848aa9017ce (diff) | |
download | fetchmail-7281d7845c0173e52ba09a97690e47b8c9c8bf42.tar.gz fetchmail-7281d7845c0173e52ba09a97690e47b8c9c8bf42.tar.bz2 fetchmail-7281d7845c0173e52ba09a97690e47b8c9c8bf42.zip |
Fix the Kerberos code.
svn path=/trunk/; revision=1111
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -95,11 +95,11 @@ int imap_ok (int sock, char *argbuf) #ifdef KERBEROS_V4 #if SIZEOF_INT = 4 -typedef int32 int; +typedef int int32; #elif SIZEOF_SHORT = 4 -typedef int32 short; +typedef short int32; #elif SIZEOF_LONG = 4 -typedef int32 long; +typedef long int32; #else #error Cannot deduce a 32-bit-type #endif |