Author: stsp
Date: Mon Jul 24 11:59:16 2017
New Revision: 1802797

URL: http://svn.apache.org/viewvc?rev=1802797&view=rev
Log:
Disable cleaning of pristines in the default mode of 'svn cleanup'.

This functionality of 'svn cleanup' was never officially documented
before r1802787, neither in 'svn help' nor in the svnbook.

Use the new --vacuum-pristines option instead, which is safe to use
even during concurrent access to the working copy by multiple clients.

* subversion/svn/cleanup-cmd.c
  (svn_cl__cleanup): Hardcode vacuum_pristines to FALSE when calling
   svn_client_cleanup().

Modified:
    subversion/trunk/subversion/svn/cleanup-cmd.c

Modified: subversion/trunk/subversion/svn/cleanup-cmd.c
URL: 
http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/cleanup-cmd.c?rev=1802797&r1=1802796&r2=1802797&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/cleanup-cmd.c (original)
+++ subversion/trunk/subversion/svn/cleanup-cmd.c Mon Jul 24 11:59:16 2017
@@ -105,7 +105,7 @@ svn_cl__cleanup(apr_getopt_t *os,
                                                  TRUE /* break_locks */,
                                                  TRUE /* fix_timestamps */,
                                                  TRUE /* clear_dav_cache */,
-                                                 TRUE /* vacuum_pristines */,
+                                                 FALSE /* vacuum_pristines */,
                                                  opt_state->include_externals,
                                                  ctx, iterpool);
 


Reply via email to