aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-05-10 10:52:29 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-05-10 10:52:29 +0000
commit1f798affb91e09ddb6c36911d1d6c28386bfb69f (patch)
tree6cd389711fc9229b6582a73485b488a91e57ff6c /lib/http.c
parenta2ecdf42497682072b61eed4e8a6002b2e54da1b (diff)
typo
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 34d79a7e2..3084d3211 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;