aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-10-10 13:21:18 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-10-10 13:21:18 +0000
commit9c624b9ce0f6a566193507bbcf4dd360f7a08445 (patch)
treea2359158143915507c53ead9f30e8c81f8ed4e1a /pop3.c
parenta6b119455ce2c0f8d66cf54b9d368db26006d88a (diff)
downloadfetchmail-9c624b9ce0f6a566193507bbcf4dd360f7a08445.tar.gz
fetchmail-9c624b9ce0f6a566193507bbcf4dd360f7a08445.tar.bz2
fetchmail-9c624b9ce0f6a566193507bbcf4dd360f7a08445.zip
-Wall cleanup.
svn path=/trunk/; revision=1497
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pop3.c b/pop3.c
index 24c63147..9fda2861 100644
--- a/pop3.c
+++ b/pop3.c
@@ -263,7 +263,7 @@ pop3_slowuidl( int sock, struct query *ctl, int *countp, int *newp)
* + Otherwise run a binary search to determine the last known message
*/
int ok, nolinear = 0;
- int first_nr, list_len, try_id, try_nr, hop_id, add_id;
+ int first_nr, list_len, try_id, try_nr, add_id;
int num;
char id [IDLEN+1];
@@ -464,7 +464,7 @@ static int pop3_fetch(int sock, struct query *ctl, int number, int *lenp)
/* request nth message */
{
int ok;
- char buf [POPBUFSIZE+1], *cp;
+ char buf [POPBUFSIZE+1];
gen_send(sock, "RETR %d", number);
if ((ok = pop3_ok(sock, buf)) != 0)