[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: authentication problem after upgrade to 0.18

From: Joe Orton <joe_at_manyfish.co.uk>
Date: 2003-02-22 12:46:25 CET

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

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.