From: Steve Holme Date: Tue, 12 Feb 2013 23:05:14 +0000 (+0000) Subject: imap: Corrected a whitespace issue from previous commit X-Git-Tag: curl-7_30_0~362 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d713e9a20700a784a9f2cb7b5941a223c704e86e;p=thirdparty%2Fcurl.git imap: Corrected a whitespace issue from previous commit Fixed a small whitespace issue that crept in there in commit 508cdf4da4d7. --- diff --git a/lib/imap.c b/lib/imap.c index 27e67ff00e..38705e33c9 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -423,7 +423,7 @@ static bool imap_endofresp(struct connectdata *conn, char *line, size_t len, /* Do we have a valid response? */ if(len >= 2 && !memcmp("* ", line, 2)) { *resp = '*'; - + return TRUE; } }