From 29358541d3542b9a370638f067d99e340988133f Mon Sep 17 00:00:00 2001 From: ishmal Date: Sun, 13 Apr 2008 16:17:11 +0000 Subject: [PATCH] make saslMd5Authenticate() error message a bit smarter --- src/pedro/pedroxmpp.cpp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/pedro/pedroxmpp.cpp b/src/pedro/pedroxmpp.cpp index 72a0cb832..757a883da 100644 --- a/src/pedro/pedroxmpp.cpp +++ b/src/pedro/pedroxmpp.cpp @@ -4,7 +4,7 @@ * Authors: * Bob Jamison * - * Copyright (C) 2005-2007 Bob Jamison + * Copyright (C) 2005-2008 Bob Jamison * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -1738,6 +1738,20 @@ bool XmppClient::saslMd5Authenticate() delete elem; return true; } + else + { + std::vector list = elem->findElements("failure"); + if (list.size() > 0) + { + DOMString errmsg = ""; + Element *errmsgElem = list[0]->getFirstChild(); + if (errmsgElem) + errmsg = errmsgElem->getName(); + error("login: initial md5 authentication failed: %s", errmsg.c_str()); + delete elem; + return false; + } + } //# Continue for one more SASL cycle b64challenge = elem->getTagValue("challenge"); delete elem; -- 2.30.2