Author: rhuijben
Date: Tue Jul 12 09:17:56 2011
New Revision: 1145504

URL: http://svn.apache.org/viewvc?rev=1145504&view=rev
Log:
Try to fix issue #3954 by making the adm crawler report excluded nodes as
deleted when depth_as_sticky is TRUE. This makes the repository report excluded
nodes as added.

* subversion/libsvn_client/status.c
  (svn_client_status5): Update call to svn_wc_crawl_revisions5.

Modified:
    subversion/trunk/subversion/libsvn_client/status.c

Modified: subversion/trunk/subversion/libsvn_client/status.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/status.c?rev=1145504&r1=1145503&r2=1145504&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_client/status.c (original)
+++ subversion/trunk/subversion/libsvn_client/status.c Tue Jul 12 09:17:56 2011
@@ -457,10 +457,11 @@ svn_client_status5(svn_revnum_t *result_
              working copy and HEAD. */
           SVN_ERR(svn_wc_crawl_revisions5(ctx->wc_ctx,
                                           target_abspath,
-                                          &lock_fetch_reporter, &rb, FALSE,
-                                          depth, TRUE,
+                                          &lock_fetch_reporter, &rb,
+                                          FALSE /* restore_files */,
+                                          depth, (! depth_as_sticky),
                                           (! server_supports_depth),
-                                          FALSE,
+                                          FALSE /* use_commit_times */,
                                           ctx->cancel_func, ctx->cancel_baton,
                                           NULL, NULL, pool));
         }


Reply via email to