From: Daniel Stenberg Date: Sat, 17 Dec 2016 22:49:11 +0000 (+0100) Subject: tool_getparam.c: make comments use the up-to-date option names X-Git-Tag: curl-7_52_0~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de0cd5e55aec4f4734065b6f4b475ab54e95dc59;p=thirdparty%2Fcurl.git tool_getparam.c: make comments use the up-to-date option names --- diff --git a/src/tool_getparam.c b/src/tool_getparam.c index 16d58489fc..d8a3c07bc8 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;