diff options
author | Daniel Stenberg <daniel@haxx.se> | 2013-12-22 01:01:19 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-12-22 01:01:19 +0100 |
commit | 3ce2a3991b85e9de6888e7848ae957cc77f4e1b4 (patch) | |
tree | ae4e789aaba1871640d13ffa8735ab9762f2b98b | |
parent | 195b63f99c2fe3df4c4f73216c01fb2332e9b107 (diff) |
code police: fix indent level to silence checksrc complaints
-rw-r--r-- | lib/imap.c | 4 | ||||
-rw-r--r-- | lib/pop3.c | 4 | ||||
-rw-r--r-- | lib/smtp.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lib/imap.c b/lib/imap.c index 3656d006f..1666a5cf8 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -2331,8 +2331,8 @@ static CURLcode imap_parse_url_options(struct connectdata *conn) } while(*ptr && *ptr != ';') { - ptr++; - len++; + ptr++; + len++; } if(strnequal(value, "*", len)) { diff --git a/lib/pop3.c b/lib/pop3.c index 8e5288d0c..d3f5a3d85 100644 --- a/lib/pop3.c +++ b/lib/pop3.c @@ -1851,8 +1851,8 @@ static CURLcode pop3_parse_url_options(struct connectdata *conn) } while(*ptr && *ptr != ';') { - ptr++; - len++; + ptr++; + len++; } if(strnequal(value, "*", len)) { diff --git a/lib/smtp.c b/lib/smtp.c index a1f1a9190..dd26f7b8e 100644 --- a/lib/smtp.c +++ b/lib/smtp.c @@ -1945,8 +1945,8 @@ static CURLcode smtp_parse_url_options(struct connectdata *conn) } while(*ptr && *ptr != ';') { - ptr++; - len++; + ptr++; + len++; } if(strnequal(value, "*", len)) |