On Mon, Jan 09, 2006 at 01:28:33PM +0100, Stefan Küng wrote:
> As mentioned earlier, the sspi authentication can end up in an endless
> loop, trying to authenticate over and over again.

Thanks.  I've merged this for the next 0.25.x release along with one 
additional fix to make the non-Win32 build work again, below.

--- neon/trunk/src/ne_auth.c    (original)
+++ neon/trunk/src/ne_auth.c    Tue Jan 10 18:19:39 2006
@@ -1273,9 +1273,11 @@
            ret = sess->spec->fail_code;
        }
     }
-    else {
+#ifdef HAVE_SSPI
+    else if (sess->sspi_context) {
         ne_sspi_clear_context(sess->sspi_context);
     }
+#endif
 
     return ret;
 }

_______________________________________________
neon mailing list
[email protected]
http://mailman.webdav.org/mailman/listinfo/neon

Reply via email to