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

Re: CVS update: subversion/subversion/libsvn_ra_dav commit.c

From: Greg Stein <gstein_at_lyra.org>
Date: 2000-12-17 13:39:58 CET

thx!

I'm waiting for the point where the server and client begin to be functional
and everything suddenly crystalizes. Boom!

Unfortunately, I think that I'm behind the curve on getting the dominoes in
line. Gotta do some cranking tomorrow.
[ can't tonite... a bit too full o' champagne and scotch... :-) ]

Cheers,
-g

On Sun, Dec 17, 2000 at 12:12:18AM -0000, joe@tigris.org wrote:
> User: joe
> Date: 00/12/16 16:12:18
>
> Modified: subversion/libsvn_ra_dav commit.c
> Log:
> * commit.c (simple_request): Use the method name passed rather than
> hard-coding MKACTIVITY. Fix the http_get_status() call.
>
> Revision Changes Path
> 1.22 +2 -2 subversion/subversion/libsvn_ra_dav/commit.c
>
> Index: commit.c
> ===================================================================
> RCS file: /cvs/subversion/subversion/libsvn_ra_dav/commit.c,v
> retrieving revision 1.21
> retrieving revision 1.22
> diff -u -r1.21 -r1.22
> --- commit.c 2000/12/16 07:32:48 1.21
> +++ commit.c 2000/12/17 00:12:18 1.22
> @@ -95,7 +95,7 @@
> int rv;
>
> /* create/prep the request */
> - req = http_request_create(ras->sess, "MKACTIVITY", url);
> + req = http_request_create(ras->sess, method, url);
> if (req == NULL)
> {
> return svn_error_createf(SVN_ERR_RA_CREATING_REQUEST, 0, NULL,
> @@ -115,7 +115,7 @@
> rv, method, url);
> }
>
> - *code = http_get_status(&req)->code;
> + *code = http_get_status(req)->code;
>
> http_request_destroy(req);
>
>
>
>

-- 
Greg Stein, http://www.lyra.org/
Received on Sat Oct 21 14:36:17 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.