diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-05-15 16:09:24 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-05-15 16:09:24 +0000 |
commit | 3dd9a93bd23e0ad36e52ffd79efe2dcbdaf85272 (patch) | |
tree | 8b0bf1472eb20208cd2295619f14d70941fffe57 /smtp.c | |
parent | 60389620d98dd09d4722f078b3523c6a0425f173 (diff) | |
download | fetchmail-3dd9a93bd23e0ad36e52ffd79efe2dcbdaf85272.tar.gz fetchmail-3dd9a93bd23e0ad36e52ffd79efe2dcbdaf85272.tar.bz2 fetchmail-3dd9a93bd23e0ad36e52ffd79efe2dcbdaf85272.zip |
-Wall cleanup.
svn path=/trunk/; revision=1011
Diffstat (limited to 'smtp.c')
-rw-r--r-- | smtp.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -48,7 +48,6 @@ int SMTP_helo(int sock,char *host) int SMTP_ehlo(int sock, char *host, int *opt) /* send a "EHLO" message to the SMTP listener, return extension status bits */ { - int ok; struct opt *hp; SockPrintf(sock,"EHLO %s\r\n", host); @@ -84,7 +83,6 @@ int SMTP_from(int sock, char *from, char *opts) /* send a "MAIL FROM:" message to the SMTP listener */ { int ok; - struct opt *hp; char buf[MSGBUFSIZE]; sprintf(buf, "MAIL FROM:<%s>", from); |