Author: danw
Date: Mon Feb  4 18:12:49 2008
New Revision: 8454
URL: http://svn.gnome.org/viewvc/evolution-data-server?rev=8454&view=rev

Log:
        * lib/e2k-context.c (session_authenticate): Only authenticate the
        auth once; if we're called again, let it fail, since the cached
        password must be incorrect. #513646.


Modified:
   trunk/servers/exchange/ChangeLog
   trunk/servers/exchange/lib/e2k-context.c

Modified: trunk/servers/exchange/lib/e2k-context.c
==============================================================================
--- trunk/servers/exchange/lib/e2k-context.c    (original)
+++ trunk/servers/exchange/lib/e2k-context.c    Mon Feb  4 18:12:49 2008
@@ -338,8 +338,10 @@
 {
        E2kContext *ctx = user_data;
 
-       soup_auth_authenticate (auth, ctx->priv->username,
-                               ctx->priv->password);
+       if (!retrying) {
+               soup_auth_authenticate (auth, ctx->priv->username,
+                                       ctx->priv->password);
+       }
 }
 
 /**
_______________________________________________
SVN-commits-list mailing list (read only)
http://mail.gnome.org/mailman/listinfo/svn-commits-list

Want to limit the commits to a few modules? Go to above URL, log in to edit 
your options and select the modules ('topics') you want.
Module maintainer? It is possible to set the reply-to to your development 
mailing list. Email [EMAIL PROTECTED] if interested.

Reply via email to