From 889d1e973fb718a77c5000141d724ce03863af23 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 22 Apr 2011 23:01:30 +0200 Subject: whitespace cleanup: no space first in conditionals "if(a)" is our style, not "if( a )" --- lib/pop3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/pop3.c') diff --git a/lib/pop3.c b/lib/pop3.c index e4fd03b45..6d5afa876 100644 --- a/lib/pop3.c +++ b/lib/pop3.c @@ -214,8 +214,8 @@ static int pop3_endofresp(struct pingpong *pp, char *line = pp->linestart_resp; size_t len = pp->nread_resp; - if( ((len >= 3) && !memcmp("+OK", line, 3)) || - ((len >= 4) && !memcmp("-ERR", line, 4)) ) { + if(((len >= 3) && !memcmp("+OK", line, 3)) || + ((len >= 4) && !memcmp("-ERR", line, 4))) { *resp=line[1]; /* O or E */ return TRUE; } -- cgit v1.2.3