diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-03-17 18:42:28 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-03-17 18:42:28 +0000 |
commit | ed588a2f2f6f387be5645ed38b8077e9f01a1291 (patch) | |
tree | 8002b657e70d1e896d3c87de4143b37264fa941f | |
parent | abe5829f32554045a77aa501b6ef60f2d1e07dc3 (diff) | |
download | fetchmail-ed588a2f2f6f387be5645ed38b8077e9f01a1291.tar.gz fetchmail-ed588a2f2f6f387be5645ed38b8077e9f01a1291.tar.bz2 fetchmail-ed588a2f2f6f387be5645ed38b8077e9f01a1291.zip |
Fix -Wall warnings.
svn path=/trunk/; revision=1707
-rw-r--r-- | imap.c | 2 | ||||
-rw-r--r-- | rpa.c | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -716,6 +716,8 @@ static int internal_expunge(int sock) #ifdef IMAP_UID /* not used */ expunge_uids(ctl); #endif /* IMAP_UID */ + + return(PS_SUCCESS); } static int imap_getrange(int sock, @@ -17,6 +17,7 @@ #include <stdio.h> #include <unistd.h> #include <ctype.h> +#include <string.h> #include "socket.h" #include "fetchmail.h" |