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/imap.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/imap.c')
-rw-r--r-- | lib/imap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/imap.c b/lib/imap.c index 4a0419a18..cd96cd804 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -1300,7 +1300,7 @@ static CURLcode imap_state_auth_ntlm_type2msg_resp(struct connectdata *conn, } #endif -#if defined(USE_KRB5) +#if defined(USE_KERBEROS5) /* For AUTHENTICATE GSSAPI (without initial response) responses */ static CURLcode imap_state_auth_gssapi_resp(struct connectdata *conn, int imapcode, @@ -1911,7 +1911,7 @@ static CURLcode imap_statemach_act(struct connectdata *conn) break; #endif -#if defined(USE_KRB5) +#if defined(USE_KERBEROS5) case IMAP_AUTHENTICATE_GSSAPI: result = imap_state_auth_gssapi_resp(conn, imapcode, imapc->state); break; @@ -2803,7 +2803,7 @@ static CURLcode imap_calc_sasl_details(struct connectdata *conn, /* Calculate the supported authentication mechanism, by decreasing order of security, as well as the initial response where appropriate */ -#if defined(USE_KRB5) +#if defined(USE_KERBEROS5) if((imapc->authmechs & SASL_MECH_GSSAPI) && (imapc->prefmech & SASL_MECH_GSSAPI)) { imapc->mutual_auth = FALSE; /* TODO: Calculate mutual authentication */ |