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.h | |
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.h')
-rw-r--r-- | lib/curl_sasl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/curl_sasl.h b/lib/curl_sasl.h index 26d94296c..41ef859a2 100644 --- a/lib/curl_sasl.h +++ b/lib/curl_sasl.h @@ -35,7 +35,7 @@ struct digestdata; struct ntlmdata; #endif -#if defined(USE_KRB5) +#if defined(USE_KERBEROS5) struct kerberos5data; #endif @@ -154,7 +154,7 @@ void Curl_sasl_ntlm_cleanup(struct ntlmdata *ntlm); #endif /* USE_NTLM */ -#if defined(USE_KRB5) +#if defined(USE_KERBEROS5) /* This is used to generate a base64 encoded GSSAPI (Kerberos V5) user token message */ CURLcode Curl_sasl_create_gssapi_user_message(struct SessionHandle *data, @@ -176,7 +176,7 @@ CURLcode Curl_sasl_create_gssapi_security_message(struct SessionHandle *data, /* This is used to clean up the gssapi specific data */ void Curl_sasl_gssapi_cleanup(struct kerberos5data *krb5); -#endif /* USE_KRB5 */ +#endif /* USE_KERBEROS5 */ /* This is used to generate a base64 encoded XOAUTH2 authentication message containing the user name and bearer token */ |