Author: rhuijben
Date: Wed Jun 4 22:26:58 2014
New Revision: 1600527
URL: http://svn.apache.org/r1600527
Log:
* subversion/svn/revert-cmd.c
(svn_cl__revert): Following up on r1568635, resolve deprecation warning.
Modified:
subversion/trunk/subversion/svn/revert-cmd.c
Modified: subversion/trunk/subversion/svn/revert-cmd.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/revert-cmd.c?rev=1600527&r1=1600526&r2=1600527&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/revert-cmd.c (original)
+++ subversion/trunk/subversion/svn/revert-cmd.c Wed Jun 4 22:26:58 2014
@@ -67,8 +67,10 @@ svn_cl__revert(apr_getopt_t *os,
SVN_ERR(svn_cl__check_targets_are_local_paths(targets));
- err = svn_client_revert2(targets, opt_state->depth,
- opt_state->changelists, ctx, scratch_pool);
+ err = svn_client_revert3(targets, opt_state->depth,
+ opt_state->changelists,
+ FALSE /* clear_changelists */,
+ ctx, scratch_pool);
if (err
&& (err->apr_err == SVN_ERR_WC_INVALID_OPERATION_DEPTH)
&& (! SVN_DEPTH_IS_RECURSIVE(opt_state->depth)))