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

Re: svn commit: r26511 - trunk/subversion/svnserve

From: Eric Gillespie <epg_at_google.com>
Date: 2007-09-11 01:36:04 CEST

sussman@tigris.org writes:

> - SVN_ERR(svn_ra_svn_parse_tuple(params, pool, "(?r)cb?w?b", &rev, &target,
> - &recurse, &depth_word, &send_copyfrom_args)
> );
> + SVN_ERR(svn_ra_svn_parse_tuple(params, pool, "(?r)cb?w?B", &rev, &target,
> + &recurse, &depth_word, &send_copyfrom_param

depth_word and send_copyfrom_param are both new to 1.5, so that
last ? should not be there; no version sends depth_word but not
send_copyfrom_param. That is:

- SVN_ERR(svn_ra_svn_parse_tuple(params, pool, "(?r)cb?w?B", &rev, &target,
+ SVN_ERR(svn_ra_svn_parse_tuple(params, pool, "(?r)cb?wB", &rev, &target,

Also, you need to update protocol:

Index: protocol
===================================================================
--- protocol (revision 26527)
+++ protocol (working copy)
@@ -306,7 +306,8 @@
     returned. If rev is not specified, the youngest revision is used.
 
   update
- params: ( [ rev:number ] target:string recurse:bool ? depth:word)
+ params: ( [ rev:number ] target:string recurse:bool
+ ? depth:word send_copyfrom_param:bool )
     Client switches to report command set.
     Upon finish-report, server sends auth-request.
     After auth exchange completes, server switches to editor command set.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Sep 11 01:32:56 2007

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.