aboutsummaryrefslogtreecommitdiffstats
path: root/smtp.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-05-15 16:09:24 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-05-15 16:09:24 +0000
commit3dd9a93bd23e0ad36e52ffd79efe2dcbdaf85272 (patch)
tree8b0bf1472eb20208cd2295619f14d70941fffe57 /smtp.c
parent60389620d98dd09d4722f078b3523c6a0425f173 (diff)
downloadfetchmail-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.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/smtp.c b/smtp.c
index 1608a63a..867db2c8 100644
--- a/smtp.c
+++ b/smtp.c
@@ -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);