diff options
author | Dimitrios Siganos <dimitris@siganos.org> | 2014-07-02 11:41:38 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-07-03 22:44:45 +0200 |
commit | 3e0443239acf568d29d637878d8ef143fc0e3e41 (patch) | |
tree | 3f47f6f31712ae3b00cec48c446d9bb47330f76a | |
parent | 8b8cc85d8dc2482a940920ab7f942c92a825d286 (diff) |
Document type of argument for CURLOPT_COPYPOSTFIELDS.
-rw-r--r-- | docs/libcurl/opts/CURLOPT_COPYPOSTFIELDS.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/opts/CURLOPT_COPYPOSTFIELDS.3 b/docs/libcurl/opts/CURLOPT_COPYPOSTFIELDS.3 index 7f4b7f40e..35ae3ef01 100644 --- a/docs/libcurl/opts/CURLOPT_COPYPOSTFIELDS.3 +++ b/docs/libcurl/opts/CURLOPT_COPYPOSTFIELDS.3 @@ -26,7 +26,7 @@ CURLOPT_COPYPOSTFIELDS \- have libcurl copy data to POST .SH SYNOPSIS #include <curl/curl.h> -CURLcode curl_easy_setopt(CURL *handle, CURLOPT_COPYPOSTFIELDS, [argument]); +CURLcode curl_easy_setopt(CURL *handle, CURLOPT_COPYPOSTFIELDS, char *data); .SH DESCRIPTION Pass a char * as parameter, which should be the full data to post in a HTTP POST operation. It behaves as the \fICURLOPT_POSTFIELDS(3)\fP option, but the |