Document type of argument for CURLOPT_COPYPOSTFIELDS.

This commit is contained in:
Dimitrios Siganos 2014-07-02 11:41:38 +02:00 committed by Daniel Stenberg
parent 8b8cc85d8d
commit 3e0443239a
1 changed files with 1 additions and 1 deletions

View File

@ -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