diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-12-30 21:54:24 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-12-30 21:54:24 +0000 |
commit | 3c799b35db0cc8cc0a31a3a74426a5bf1390662e (patch) | |
tree | 1331b8355166793277f7ea9d1eb3011710a05329 /sink.c | |
parent | e068abb990f432c514258c43d9614be91b19335d (diff) | |
download | fetchmail-3c799b35db0cc8cc0a31a3a74426a5bf1390662e.tar.gz fetchmail-3c799b35db0cc8cc0a31a3a74426a5bf1390662e.tar.bz2 fetchmail-3c799b35db0cc8cc0a31a3a74426a5bf1390662e.zip |
gcc -Wall cleanup.
svn path=/trunk/; revision=2302
Diffstat (limited to 'sink.c')
-rw-r--r-- | sink.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -30,6 +30,7 @@ #else #include <varargs.h> #endif +#include <ctype.h> #include "fetchmail.h" #include "socket.h" @@ -257,7 +258,7 @@ static int send_bouncemail(struct msgblk *msg, int userclass, { char daemon_name[18 + HOSTLEN] = "FETCHMAIL-DAEMON@"; char boundary[BUFSIZ], *ts; - int i, sock; + int sock; /* don't bounce in reply to undeliverable bounces */ if (!msg->return_path[0] || strcmp(msg->return_path, "<>") == 0) |