aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2012-12-30 12:46:45 +0000
committerSteve Holme <steve_holme@hotmail.com>2012-12-30 12:46:45 +0000
commitd86503ea82ba4f9ab5c0de74feadac94b7bd9ee8 (patch)
treee22d229037f035903089a49c43994f6ea4981bb3
parentbd8ae6800674411b10482a5253428abbc83bf308 (diff)
imap.c: Minor follow up tidy up
-rw-r--r--lib/imap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/imap.c b/lib/imap.c
index 684c821a3..4a552bc59 100644
--- a/lib/imap.c
+++ b/lib/imap.c
@@ -331,8 +331,8 @@ static int imap_endofresp(struct pingpong *pp, int *resp)
/* Do we have a generic command response? */
if(len >= id_len + 3) {
- if(!memcmp(id, line, id_len) && (line[id_len] == ' ') ) {
- *resp = line[id_len+1]; /* O, N or B */
+ if(!memcmp(id, line, id_len) && line[id_len] == ' ') {
+ *resp = line[id_len + 1]; /* O, N or B */
return TRUE;
}
}
@@ -602,7 +602,7 @@ static CURLcode imap_state_fetch_resp(struct connectdata *conn,
ptr++;
if(*ptr == '{') {
- curl_off_t filesize = curlx_strtoofft(ptr+1, NULL, 10);
+ curl_off_t filesize = curlx_strtoofft(ptr + 1, NULL, 10);
if(filesize)
Curl_pgrsSetDownloadSize(data, filesize);