mirror of
https://github.com/curl/curl.git
synced 2026-07-07 16:27:18 +03:00
http: fix compiler warning
compiler warning: conditional expression is constant
This commit is contained in:
parent
d9e71809cb
commit
57064e4a0d
1 changed files with 2 additions and 2 deletions
|
|
@ -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) &&
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue