mirror of
https://github.com/curl/curl.git
synced 2025-03-25 15:50:32 +08:00
CURLOPT_QUOTE.3: fix typos
Prior to this change the EXAMPLE in the QUOTE/PREQUOTE/POSTQUOTE man pages would not compile because a variable name was incorrect. Reported-by: Bylon2@users.noreply.github.com Fixes https://github.com/curl/curl/issues/4736
This commit is contained in:
parent
ac7b1fb10c
commit
c1592cc92b
@ -40,16 +40,16 @@ NULL
|
||||
SFTP and FTP
|
||||
.SH EXAMPLE
|
||||
.nf
|
||||
struct curl_slist *h = NULL;
|
||||
h = curl_slist_append(h, "RNFR source-name");
|
||||
h = curl_slist_append(h, "RNTO new-name");
|
||||
struct curl_slist *cmdlist = NULL;
|
||||
cmdlist = curl_slist_append(cmdlist, "RNFR source-name");
|
||||
cmdlist = curl_slist_append(cmdlist, "RNTO new-name");
|
||||
|
||||
curl = curl_easy_init();
|
||||
if(curl) {
|
||||
curl_easy_setopt(curl, CURLOPT_URL, "ftp://example.com/foo.bin");
|
||||
|
||||
/* pass in the FTP commands to run after the transfer */
|
||||
curl_easy_setopt(curl, CURLOPT_POSTQUOTE, headerlist);
|
||||
curl_easy_setopt(curl, CURLOPT_POSTQUOTE, cmdlist);
|
||||
|
||||
ret = curl_easy_perform(curl);
|
||||
|
||||
|
@ -43,15 +43,15 @@ NULL
|
||||
FTP
|
||||
.SH EXAMPLE
|
||||
.nf
|
||||
struct curl_slist *h = NULL;
|
||||
h = curl_slist_append(h, "SYST");
|
||||
struct curl_slist *cmdlist = NULL;
|
||||
cmdlist = curl_slist_append(cmdlist, "SYST");
|
||||
|
||||
curl = curl_easy_init();
|
||||
if(curl) {
|
||||
curl_easy_setopt(curl, CURLOPT_URL, "ftp://example.com/foo.bin");
|
||||
|
||||
/* pass in the FTP commands to run */
|
||||
curl_easy_setopt(curl, CURLOPT_PREQUOTE, headerlist);
|
||||
curl_easy_setopt(curl, CURLOPT_PREQUOTE, cmdlist);
|
||||
|
||||
ret = curl_easy_perform(curl);
|
||||
|
||||
|
@ -81,16 +81,16 @@ NULL
|
||||
SFTP and FTP
|
||||
.SH EXAMPLE
|
||||
.nf
|
||||
struct curl_slist *h = NULL;
|
||||
h = curl_slist_append(h, "RNFR source-name");
|
||||
h = curl_slist_append(h, "RNTO new-name");
|
||||
struct curl_slist *cmdlist = NULL;
|
||||
cmdlist = curl_slist_append(cmdlist, "RNFR source-name");
|
||||
cmdlist = curl_slist_append(cmdlist, "RNTO new-name");
|
||||
|
||||
curl = curl_easy_init();
|
||||
if(curl) {
|
||||
curl_easy_setopt(curl, CURLOPT_URL, "ftp://example.com/foo.bin");
|
||||
|
||||
/* pass in the FTP commands to run before the transfer */
|
||||
curl_easy_setopt(curl, CURLOPT_QUOTE, headerlist);
|
||||
curl_easy_setopt(curl, CURLOPT_QUOTE, cmdlist);
|
||||
|
||||
ret = curl_easy_perform(curl);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user