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

Re: svn commit: r18059 - trunk/subversion/libsvn_ra_dav

From: <kfogel_at_collab.net>
Date: 2006-01-11 00:14:37 CET

dlr@tigris.org writes:
> Modified:
> trunk/subversion/libsvn_ra_dav/session.c
>
> Log:
> A follow-up to r18042.
>
> * subversion/libsvn_ra_dav/session.c
> Include ctype.h for tolower().

? This is the same log message as for r18065. Except this is
r18059... again? And the log message doesn't *quite* match the
change.

Help. I'm confused :-).

> Modified: trunk/subversion/libsvn_ra_dav/session.c
> Url: http://svn.collab.net/viewcvs/svn/trunk/subversion/libsvn_ra_dav/session.c?rev=18059&p1=trunk/subversion/libsvn_ra_dav/session.c&p2=trunk/subversion/libsvn_ra_dav/session.c&r1=18058&r2=18059
> ==============================================================================
> --- trunk/subversion/libsvn_ra_dav/session.c (original)
> +++ trunk/subversion/libsvn_ra_dav/session.c Tue Jan 10 18:30:36 2006
> @@ -19,6 +19,7 @@
>
>
> #include <assert.h>
> +#include <ctype.h>
>
> #define APR_WANT_STRFUNC
> #include <apr_want.h>
> @@ -183,6 +184,15 @@
> /* Construct the realmstring, e.g. https://svn.collab.net:80 */
> realmstring = apr_psprintf (ras->pool, "%s://%s:%d", ras->root.scheme,
> ras->root.host, ras->root.port);
> +
> + /* When the --trust-server-cert is on, ignore the NE_SSL_UNTRUSTED
> + error from Neon. This is useful in conjunction with
> + --non-interactive. */
> + if (0)
> + {
> + /* ### FIXME: Only return 0 when _only_ NE_SSL_UNTRUSTED is set. */
> + failures &= NE_SSL_UNTRUSTED ^ 1;
> + }
>
> *svn_failures = convert_neon_failures(failures);
> svn_auth_set_parameter(ras->callbacks->auth_baton,
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: svn-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: svn-help@subversion.tigris.org
>

-- 
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Jan 11 01:51:03 2006

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.