docs: fix docs for CURLOPT_PREQUOTE after #17616

Closes #17690
This commit is contained in:
Ethan Alker 2025-06-20 17:50:49 -04:00 committed by Daniel Stenberg
parent 0d647a8a76
commit 73ad54f7b0
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
3 changed files with 1 additions and 12 deletions

View file

@ -62,7 +62,6 @@
4. FTP
4.1 HOST
4.4 Support CURLOPT_PREQUOTE for directories listings
4.6 GSSAPI via Windows SSPI
4.7 STAT for LIST without data connection
4.8 Passive transfer could try other IP addresses
@ -555,13 +554,6 @@
https://datatracker.ietf.org/doc/html/rfc7151
4.4 Support CURLOPT_PREQUOTE for directions listings
The lack of support is mostly an oversight and requires the FTP state machine
to get updated to get fixed.
https://github.com/curl/curl/issues/8602
4.6 GSSAPI via Windows SSPI
In addition to currently supporting the SASL GSSAPI mechanism (Kerberos V5)

View file

@ -24,7 +24,7 @@ successful transfer, prefix them with a dash '-'.
(FTP only) To make commands be sent after curl has changed the working
directory, just before the file transfer command(s), prefix the command with a
'+'. This is not performed when a directory listing is performed.
'+'.
You may specify any number of commands.

View file

@ -38,9 +38,6 @@ previous ones. Set it to NULL to disable its use again.
libcurl does not copy the list, it needs to be kept around until after the
transfer has completed.
These commands are not performed when a directory listing is performed, only
for file transfers.
While CURLOPT_QUOTE(3) and CURLOPT_POSTQUOTE(3) work for SFTP,
this option does not.