Mercurial > pidgin
comparison libpurple/protocols/jabber/auth.c @ 28698:f27ed49948b7
jabber: Oops, re-enable DIGEST-MD5 (I was testing PLAIN).
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Sat, 07 Nov 2009 06:42:48 +0000 |
parents | de8565bc63fe |
children | 673ed3740cd7 |
comparison
equal
deleted
inserted
replaced
28697:de8565bc63fe | 28698:f27ed49948b7 |
---|---|
484 } | 484 } |
485 | 485 |
486 void jabber_auth_init(void) | 486 void jabber_auth_init(void) |
487 { | 487 { |
488 auth_mechs = g_slist_insert_sorted(auth_mechs, jabber_auth_get_plain_mech(), compare_mech); | 488 auth_mechs = g_slist_insert_sorted(auth_mechs, jabber_auth_get_plain_mech(), compare_mech); |
489 // auth_mechs = g_slist_insert_sorted(auth_mechs, jabber_auth_get_digest_md5_mech(), compare_mech); | 489 auth_mechs = g_slist_insert_sorted(auth_mechs, jabber_auth_get_digest_md5_mech(), compare_mech); |
490 #ifdef HAVE_CYRUS_SASL | 490 #ifdef HAVE_CYRUS_SASL |
491 auth_mechs = g_slist_insert_sorted(auth_mechs, jabber_auth_get_cyrus_mech(), compare_mech); | 491 auth_mechs = g_slist_insert_sorted(auth_mechs, jabber_auth_get_cyrus_mech(), compare_mech); |
492 #endif | 492 #endif |
493 } | 493 } |
494 | 494 |