From d713e9a20700a784a9f2cb7b5941a223c704e86e Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Tue, 12 Feb 2013 23:05:14 +0000 Subject: [PATCH] imap: Corrected a whitespace issue from previous commit Fixed a small whitespace issue that crept in there in commit 508cdf4da4d7. --- lib/imap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/imap.c b/lib/imap.c index 27e67ff00..38705e33c 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; } }