From: Daniel Stenberg Date: Mon, 10 May 2004 10:52:29 +0000 (+0000) Subject: typo X-Git-Tag: curl-7_12_0~145 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1f798affb91e09ddb6c36911d1d6c28386bfb69f;p=thirdparty%2Fcurl.git typo --- diff --git a/lib/http.c b/lib/http.c index 34d79a7e2d..3084d32110 100644 --- a/lib/http.c +++ b/lib/http.c @@ -1886,7 +1886,7 @@ CURLcode Curl_http(struct connectdata *conn) This limit is no magic limit but only set to prevent really huge POSTs to get the data duplicated with malloc() and family. */ - result == add_buffer(req_buffer, "\r\n", 2); /* end of headers! */ + result = add_buffer(req_buffer, "\r\n", 2); /* end of headers! */ if(result) return result;