diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-12 23:05:14 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-12 23:05:14 +0000 |
commit | d713e9a20700a784a9f2cb7b5941a223c704e86e (patch) | |
tree | 66ad22b807d8576d709829c26f16375fe0e7beb5 /lib | |
parent | 508cdf4da4d767b76ff8198f11fd8ae6128144ad (diff) |
imap: Corrected a whitespace issue from previous commit
Fixed a small whitespace issue that crept in there in commit
508cdf4da4d7.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |