Skip to content
Snippets Groups Projects
Commit 57064e4a authored by Yang Tse's avatar Yang Tse
Browse files

http: fix compiler warning

compiler warning: conditional expression is constant
parent d9e71809
No related branches found
No related tags found
No related merge requests found
......@@ -3158,7 +3158,7 @@ CURLcode Curl_http_readwrite_headers(struct SessionHandle *data,
/* Find the first non-space letter */
start = k->p + 18;
do {
for(;;) {
/* skip whitespaces and commas */
while(*start && (ISSPACE(*start) || (*start == ',')))
start++;
......@@ -3204,7 +3204,7 @@ CURLcode Curl_http_readwrite_headers(struct SessionHandle *data,
/* unknown! */
break;
} while(1);
}
}
else if(checkprefix("Content-Encoding:", k->p) &&
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment