* 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.
svn path=/trunk/; revision=8454
+2008-02-04 Dan Winship <danw@gnome.org>
+
+ * 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.
+
2008-01-30 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #395939
{
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);
+ }
}
/**