From: Kamil Dudka Date: Thu, 2 Jul 2020 15:41:37 +0000 (+0200) Subject: tool_getparam: make --krb option work again X-Git-Tag: curl-7_72_0~131 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d2fd845c35922ca73b89c617597dd5c59772e16a;p=thirdparty%2Fcurl.git tool_getparam: make --krb option work again It was disabled by mistake in commit curl-7_37_1-23-ge38ba4301. Bug: https://bugzilla.redhat.com/1833193 Closes #5640 --- diff --git a/src/tool_getparam.c b/src/tool_getparam.c index 3409621454..9c6bc8a144 100644 --- a/src/tool_getparam.c +++ b/src/tool_getparam.c @@ -813,7 +813,7 @@ ParameterError getparameter(const char *flag, /* f or -long-flag */ break; case 'x': /* --krb */ /* kerberos level string */ - if(curlinfo->features & CURL_VERSION_KERBEROS4) + if(curlinfo->features & CURL_VERSION_SPNEGO) GetStr(&config->krblevel, nextarg); else return PARAM_LIBCURL_DOESNT_SUPPORT;