changeset 22515:49deb72ffdc1

Discussion is in progress on pidgin-devel about the preference to enable/disable GSSAPI, but upon reflection it should, if it exists at all, default to TRUE. Making it do so for the time being.
author Evan Schoenberg <evan.s@dreskin.net>
date Thu, 20 Mar 2008 08:42:15 +0000
parents c66dd9db3b09
children 8972581c2326 07915e7a4c08
files libpurple/protocols/jabber/auth.c libpurple/protocols/jabber/libxmpp.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/jabber/auth.c	Thu Mar 20 04:22:21 2008 +0000
+++ b/libpurple/protocols/jabber/auth.c	Thu Mar 20 08:42:15 2008 +0000
@@ -492,7 +492,7 @@
 #ifdef HAVE_CYRUS_SASL
 		/* Skip the GSSAPI mechanism unless it's enabled for this account */
 		if (mech_name && !strcmp(mech_name, "GSSAPI") &&
-			!purple_account_get_bool(js->gc->account, "auth_gssapi", FALSE)) {
+			!purple_account_get_bool(js->gc->account, "auth_gssapi", TRUE)) {
 			continue;
 		}
 
--- a/libpurple/protocols/jabber/libxmpp.c	Thu Mar 20 04:22:21 2008 +0000
+++ b/libpurple/protocols/jabber/libxmpp.c	Thu Mar 20 08:42:15 2008 +0000
@@ -227,7 +227,7 @@
 #ifdef HAVE_CYRUS_SASL
 	option = purple_account_option_bool_new(
 											_("Use GSSAPI (Kerberos v5) for authentication"),
-											"auth_gssapi", FALSE);
+											"auth_gssapi", TRUE);
 	prpl_info.protocol_options = g_list_append(prpl_info.protocol_options,
 											   option);	
 #endif