diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-05-04 13:01:27 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-05-04 13:01:27 +0000 |
commit | bd4fd9c28c2a12650f20d3a1d707b22adea64ffd (patch) | |
tree | f45b0a0bcc18390eddec55ccc059b974878699c1 | |
parent | ff3e574187d8a4b7968daedf23741f80c3b714e0 (diff) |
Philippe Vaucher reported this typo
-rw-r--r-- | docs/libcurl/libcurl-tutorial.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/libcurl-tutorial.3 b/docs/libcurl/libcurl-tutorial.3 index bb5f6628b..7bbdc8a4a 100644 --- a/docs/libcurl/libcurl-tutorial.3 +++ b/docs/libcurl/libcurl-tutorial.3 @@ -557,7 +557,7 @@ post handle: curl_easy_perform(easyhandle); /* post away! */ curl_formfree(post); /* free post */ - curl_slist_free_all(post); /* free custom header list */ + curl_slist_free_all(headers); /* free custom header list */ .fi Since all options on an easyhandle are "sticky", they remain the same until |