diff options
-rw-r--r-- | lib/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c index 349b81da6..a31e0f879 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1544,7 +1544,7 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn, else for(i = 0; i < gotbytes; ptr++, i++) { perline++; /* amount of bytes in this line so far */ - if(*ptr=='\x0a') { + if(*ptr == 0x0a) { char letter; int writetype; |