From c6a786da423edc936db3d62e00ce2dc06b2e2a44 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Fri, 4 Oct 1996 15:11:19 +0000 Subject: [PATCH] Avoid SPARC bug. svn path=/trunk/; revision=213 --- pop3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pop3.c b/pop3.c index c2ce2d22..f10043ae 100644 --- a/pop3.c +++ b/pop3.c @@ -198,7 +198,7 @@ int socket; struct hostrec *queryctl; int number; { - return(gen_transact(socket, "DELE %d", number); + return(gen_transact(socket, "DELE %d", number)); } const static struct method pop3 = -- 2.43.2