aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2009-05-04 22:00:18 +0000
committerMatthias Andree <matthias.andree@gmx.de>2009-05-04 22:00:18 +0000
commit1cecbe2bc1a9f8b939facb007c6551fb77b1048a (patch)
treef156fd61e776cec813954b6fa0c130687971b163 /pop3.c
parent64c3c5394121ab9f5a93a8c6d2c48511ff720536 (diff)
downloadfetchmail-1cecbe2bc1a9f8b939facb007c6551fb77b1048a.tar.gz
fetchmail-1cecbe2bc1a9f8b939facb007c6551fb77b1048a.tar.bz2
fetchmail-1cecbe2bc1a9f8b939facb007c6551fb77b1048a.zip
Fix format string bugs.
svn path=/branches/BRANCH_6-3/; revision=5291
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pop3.c b/pop3.c
index 14cfde82..7e7757d2 100644
--- a/pop3.c
+++ b/pop3.c
@@ -771,7 +771,7 @@ static int pop3_gettopid(int sock, int num , char *id, size_t idsize)
int got_it;
char buf [POPBUFSIZE+1];
snprintf(buf, sizeof(buf), "TOP %d 1", num);
- if ((ok = gen_transact(sock, buf )) != 0)
+ if ((ok = gen_transact(sock, "%s", buf)) != 0)
return ok;
got_it = 0;
while ((ok = gen_recv(sock, buf, sizeof(buf))) == 0)