On Sat, Feb 22, 2003 at 12:38:59PM +0100, Dominik Westner wrote:
> Ok, here are some more details. First off I should mention that when I
> upgrade subversion, I also use the latest apr and httpd from CVS (that
> has been required some time ago, but I don't know if this still holds).
> Digest Authentication works with a browser though.
>
> I can reliably reproduce the error. It seems to happen in this case:
Thanks - can you try this neon patch?
--- src/ne_auth.c 16 Jan 2003 21:55:18 -0000 1.74.2.1
+++ src/ne_auth.c 22 Feb 2003 11:45:31 -0000
@@ -582,7 +582,7 @@
cnonce = val;
} else if (strcasecmp(key, "nc") == 0) {
nc = val;
- if (sscanf(val, "%d", &nonce_count) != 1) {
+ if (sscanf(val, "%x", &nonce_count) != 1) {
NE_DEBUG(NE_DBG_HTTPAUTH, "Couldn't find nonce count.\n");
} else {
NE_DEBUG(NE_DBG_HTTPAUTH, "Got nonce_count: %d\n", nonce_count);
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Feb 22 12:44:35 2003