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