From 2cba77f52772f944f7da83750cf88f74514d2e6a Mon Sep 17 00:00:00 2001 From: Bob Jamison Date: Sun, 13 Apr 2008 16:17:11 +0000 Subject: make saslMd5Authenticate() error message a bit smarter (bzr r5415) --- src/pedro/pedroxmpp.cpp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'src') 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; -- cgit v1.2.3