diff options
author | Patrick Monnerat <pm@datasphere.ch> | 2015-01-27 18:08:18 +0100 |
---|---|---|
committer | Patrick Monnerat <pm@datasphere.ch> | 2015-01-27 18:08:18 +0100 |
commit | 7b2012f2628811e212ae936fa7246b6f8baa3218 (patch) | |
tree | 10edc8a77346e6629156ea863f72a34e74c21831 | |
parent | ed9a4b9fc46f967da9e6a355f860f2a43505f41b (diff) |
sasl: remove XOAUTH2 from default enabled authentication mechanism.
-rw-r--r-- | lib/curl_sasl.c | 3 | ||||
-rw-r--r-- | lib/curl_sasl.h | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/curl_sasl.c b/lib/curl_sasl.c index 2d55836cd..3fa6f344d 100644 --- a/lib/curl_sasl.c +++ b/lib/curl_sasl.c @@ -1440,8 +1440,7 @@ CURLcode Curl_sasl_start(struct SASL *sasl, struct connectdata *conn, } else #endif - if((((enabledmechs & SASL_MECH_XOAUTH2) && - sasl->prefmech != SASL_AUTH_DEFAULT)) || conn->xoauth2_bearer) { + if((enabledmechs & SASL_MECH_XOAUTH2) || conn->xoauth2_bearer) { mech = SASL_MECH_STRING_XOAUTH2; state1 = SASL_XOAUTH2; sasl->authused = SASL_MECH_XOAUTH2; diff --git a/lib/curl_sasl.h b/lib/curl_sasl.h index 985ca416e..0dc73770f 100644 --- a/lib/curl_sasl.h +++ b/lib/curl_sasl.h @@ -52,7 +52,8 @@ struct kerberos5data; /* Authentication mechanism values */ #define SASL_AUTH_NONE 0 #define SASL_AUTH_ANY ~0U -#define SASL_AUTH_DEFAULT (SASL_AUTH_ANY & ~SASL_MECH_EXTERNAL) +#define SASL_AUTH_DEFAULT (SASL_AUTH_ANY & \ + ~(SASL_MECH_EXTERNAL | SASL_MECH_XOAUTH2)) /* Authentication mechanism strings */ #define SASL_MECH_STRING_LOGIN "LOGIN" |