From 1cecbe2bc1a9f8b939facb007c6551fb77b1048a Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Mon, 4 May 2009 22:00:18 +0000 Subject: Fix format string bugs. svn path=/branches/BRANCH_6-3/; revision=5291 --- pop3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pop3.c') 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) -- cgit v1.2.3