diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-10-02 18:42:32 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-10-02 18:42:32 +0200 |
commit | 501b4e06244dbd333ee207ceade37592482e0fe7 (patch) | |
tree | 213f0da4777c8b4bd5c74c3f32273a9ef5057d19 /protocols/jabber/sasl.c | |
parent | d9282b4b3a7a1264bf7952e5de4dbd10b6aa5e4e (diff) |
Added a useful error message for SASL negotiation failures and turned off
the little hack in jabber_write() for now because it breaks error handling.
Diffstat (limited to 'protocols/jabber/sasl.c')
-rw-r--r-- | protocols/jabber/sasl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/jabber/sasl.c b/protocols/jabber/sasl.c index 39d45c9b..a9676338 100644 --- a/protocols/jabber/sasl.c +++ b/protocols/jabber/sasl.c @@ -63,6 +63,7 @@ xt_status sasl_pkt_mechanisms( struct xt_node *node, gpointer data ) if( !sup_plain && !sup_digest ) { + hide_login_progress( gc, "No known SASL authentication schemes supported" ); signoff( gc ); return XT_ABORT; } |