diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-12-17 23:49:11 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-12-17 23:49:11 +0100 |
commit | de0cd5e55aec4f4734065b6f4b475ab54e95dc59 (patch) | |
tree | b300c811322c63f58339fd642e600997d4bd4710 /src | |
parent | 7618e60c271ca11a8422d48dc91bf397a7953e86 (diff) |
tool_getparam.c: make comments use the up-to-date option names
Diffstat (limited to 'src')
-rw-r--r-- | src/tool_getparam.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tool_getparam.c b/src/tool_getparam.c index 16d58489f..d8a3c07bc 100644 --- a/src/tool_getparam.c +++ b/src/tool_getparam.c @@ -790,7 +790,7 @@ ParameterError getparameter(char *flag, /* f or -long-flag */ break; case '$': /* more options without a short option */ switch(subletter) { - case 'a': /* --ftp-ssl */ + case 'a': /* --ssl */ if(toggle && !(curlinfo->features & CURL_VERSION_SSL)) return PARAM_LIBCURL_DOESNT_SUPPORT; config->ftp_ssl = toggle; @@ -888,7 +888,7 @@ ParameterError getparameter(char *flag, /* f or -long-flag */ case 'u': /* --ftp-alternative-to-user */ GetStr(&config->ftp_alternative_to_user, nextarg); break; - case 'v': /* --ftp-ssl-reqd */ + case 'v': /* --ssl-reqd */ if(toggle && !(curlinfo->features & CURL_VERSION_SSL)) return PARAM_LIBCURL_DOESNT_SUPPORT; config->ftp_ssl_reqd = toggle; |