aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/opts/CURLOPT_QUOTE.3
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2019-12-18 15:21:36 -0500
committerJay Satiro <raysatiro@yahoo.com>2019-12-18 15:21:58 -0500
commitc1592cc92b92d52835af96ecfd52c08a9e2b48c6 (patch)
tree17eedb33cb1c1ebbdc50942b8baf9fef1cdff026 /docs/libcurl/opts/CURLOPT_QUOTE.3
parentac7b1fb10cbc82d04371ee5f6ab406968dcec029 (diff)
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
Diffstat (limited to 'docs/libcurl/opts/CURLOPT_QUOTE.3')
-rw-r--r--docs/libcurl/opts/CURLOPT_QUOTE.38
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/libcurl/opts/CURLOPT_QUOTE.3 b/docs/libcurl/opts/CURLOPT_QUOTE.3
index b547a1635..86cf63067 100644
--- a/docs/libcurl/opts/CURLOPT_QUOTE.3
+++ b/docs/libcurl/opts/CURLOPT_QUOTE.3
@@ -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);