diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2014-06-25 22:30:36 +0200 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2014-06-25 22:33:32 +0200 |
commit | 057cc2e9156f5eac95f320cccf0fcb1d552f87d4 (patch) | |
tree | e319641e47d1150a4dc6825797ca4c68fff8fee3 | |
parent | d8287ca8bc446ccab89064874d1738715cb02ffa (diff) |
curl_easy_setopt.3: fixed the error code for an unsupported option
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index ec56670e6..17871dd5f 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -20,7 +20,7 @@ .\" * .\" ************************************************************************** .\" -.TH curl_easy_setopt 3 "1 Jan 2010" "libcurl 7.20.0" "libcurl Manual" +.TH curl_easy_setopt 3 "25 Jun 2014" "libcurl 7.38.0" "libcurl Manual" .SH NAME curl_easy_setopt \- set options for a curl easy handle .SH SYNOPSIS @@ -336,7 +336,7 @@ RTSP stream URI. See \fICURLOPT_RTSP_STREAM_URI(3)\fP .IP CURLOPT_RTSP_TRANSPORT RTSP Transport: header. See \fICURLOPT_RTSP_TRANSPORT(3)\fP .IP CURLOPT_RTSP_CLIENT_CSEQ -Clent CSEQ number. See \fICURLOPT_RTSP_CLIENT_CSEQ(3)\fP +Client CSEQ number. See \fICURLOPT_RTSP_CLIENT_CSEQ(3)\fP .IP CURLOPT_RTSP_SERVER_CSEQ CSEQ number for RTSP Server->Client request. See \fICURLOPT_RTSP_SERVER_CSEQ(3)\fP .SH PROTOCOL OPTIONS @@ -488,12 +488,14 @@ Mode for creating new remote dirs. See \fICURLOPT_NEW_DIRECTORY_PERMS(3)\fP .IP CURLOPT_TELNETOPTIONS TELNET options. See \fICURLOPT_TELNETOPTIONS(3)\fP .SH RETURN VALUE -CURLE_OK (zero) means that the option was set properly, non-zero means an +\fICURLE_OK\fP (zero) means that the option was set properly, non-zero means an error occurred as \fI<curl/curl.h>\fP defines. See the \fIlibcurl-errors(3)\fP man page for the full list with descriptions. If you try to set an option that libcurl doesn't know about, perhaps because the library is too old to support it or the option was removed in a recent -version, this function will return \fICURLE_FAILED_INIT\fP. +version, this function will return \fICURLE_UNKNOWN_OPTION\fP. If support for +the option was disabled at compile-time, it will return +\fICURLE_NOT_BUILT_IN\fP. .SH "SEE ALSO" .BR curl_easy_init "(3), " curl_easy_cleanup "(3), " curl_easy_reset "(3)" |