Skip to content

Commit

Permalink
curl.1: Fix cmdline-opts reference errors.
Browse files Browse the repository at this point in the history
--data, --form, and --ntlm were declared to be mutually exclusive with
non-existing options. --data and --form referred to --upload (which is
short for --upload-file and therefore did work, so this one was merely
a bit confusing), --ntlm referred to --negotiated instead of --negotiate.

Closes #2612
  • Loading branch information
gevaerts authored and bagder committed May 28, 2018
1 parent c78dd2e commit 7c189c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/cmdline-opts/data.d
Expand Up @@ -4,7 +4,7 @@ Arg: <data>
Help: HTTP POST data
Protocols: HTTP
See-also: data-binary data-urlencode data-raw
Mutexed: form head upload
Mutexed: form head upload-file
---
Sends the specified data in a POST request to the HTTP server, in the same way
that a browser does when a user has filled in an HTML form and presses the
Expand Down
2 changes: 1 addition & 1 deletion docs/cmdline-opts/form.d
Expand Up @@ -3,7 +3,7 @@ Short: F
Arg: <name=content>
Help: Specify multipart MIME data
Protocols: HTTP SMTP IMAP
Mutexed: data head upload
Mutexed: data head upload-file
---
For HTTP protocol family, this lets curl emulate a filled-in form in which a
user has pressed the submit button. This causes curl to POST data using the
Expand Down
2 changes: 1 addition & 1 deletion docs/cmdline-opts/ntlm.d
@@ -1,6 +1,6 @@
Long: ntlm
Help: Use HTTP NTLM authentication
Mutexed: basic negotiated digest anyauth
Mutexed: basic negotiate digest anyauth
See-also: proxy-ntlm
Protocols: HTTP
Requires: TLS
Expand Down

0 comments on commit 7c189c6

Please sign in to comment.