diff options
author | Michael Osipov <1983-01-06@gmx.net> | 2014-11-16 09:50:06 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-11-16 13:29:04 +0000 |
commit | 9f10e45e428ca3b30d42719cda8c7f3159c3bd15 (patch) | |
tree | cba0430a7095ae3491519aaa0628b38390c15d2e /lib/curl_sasl.c | |
parent | a607f8a20c6c5ac869598753097e3da06165cbd9 (diff) | |
download | curl-9f10e45e428ca3b30d42719cda8c7f3159c3bd15.tar.gz |
kerberos: Use symbol qualified with _KERBEROS5
For consistency renamed USE_KRB5 to USE_KERBEROS5.
Diffstat (limited to 'lib/curl_sasl.c')
-rw-r--r-- | lib/curl_sasl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/curl_sasl.c b/lib/curl_sasl.c index 1e2b216f9..47766a705 100644 --- a/lib/curl_sasl.c +++ b/lib/curl_sasl.c @@ -1250,7 +1250,7 @@ CURLcode Curl_sasl_create_xoauth2_message(struct SessionHandle *data, */ void Curl_sasl_cleanup(struct connectdata *conn, unsigned int authused) { -#if defined(USE_KRB5) +#if defined(USE_KERBEROS5) /* Cleanup the gssapi structure */ if(authused == SASL_MECH_GSSAPI) { Curl_sasl_gssapi_cleanup(&conn->krb5); @@ -1264,7 +1264,7 @@ void Curl_sasl_cleanup(struct connectdata *conn, unsigned int authused) } #endif -#if !defined(USE_KRB5) && !defined(USE_NTLM) +#if !defined(USE_KERBEROS5) && !defined(USE_NTLM) /* Reserved for future use */ (void)conn; (void)authused; |