diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-09-11 09:27:06 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-09-12 09:50:24 +0200 |
commit | 20acb58a38a605cab1b17c0b3379e43cf09b40a6 (patch) | |
tree | c7a4b4722ef967e0b13c26b1c1e9d9f6a1a29790 /lib/http.c | |
parent | 67ade28571da2ac688d6edeb26f3abfb4f4ae3e8 (diff) | |
download | curl-20acb58a38a605cab1b17c0b3379e43cf09b40a6.tar.gz |
code style: use space after semicolon
Diffstat (limited to 'lib/http.c')
-rw-r--r-- | lib/http.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index 133c8e3c6..8dfea7b70 100644 --- a/lib/http.c +++ b/lib/http.c @@ -172,6 +172,7 @@ CURLcode Curl_http_setup_conn(struct connectdata *conn) return CURLE_OK; } + /* * checkProxyHeaders() checks the linked list of custom proxy headers * if proxy headers are not available, then it will lookup into http header @@ -1321,7 +1322,7 @@ Curl_compareheader(const char *headerline, /* line to check */ clen = strlen(content); /* length of the word to find */ /* find the content string in the rest of the line */ - for(;len >= clen;len--, start++) { + for(; len >= clen; len--, start++) { if(strncasecompare(start, content, clen)) return TRUE; /* match! */ } |