From 392c1dc7f402294f1abdfd55abd24b3a0750213c Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 24 May 2005 17:50:27 +0000 Subject: [PATCH] fix DIGEST auth with Alexey patch --- src/common/xmpp/auth.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/common/xmpp/auth.py b/src/common/xmpp/auth.py index 49d3625a4..0e4cfbdf3 100644 --- a/src/common/xmpp/auth.py +++ b/src/common/xmpp/auth.py @@ -98,9 +98,6 @@ class SASL(PlugIn): """ Implements SASL authentication. """ def plugin(self,owner): if not self._owner.Dispatcher.Stream._document_attrs.has_key('version'): self.startsasl='not-supported' - elif self._owner.Dispatcher.Stream.features: - try: self.FeaturesHandler(self._owner.Dispatcher,self._owner.Dispatcher.Stream.features) - except NodeProcessed: pass else: self.startsasl=None def auth(self,username,password):