You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2017/07/24 12:33:34 UTC

svn commit: r1802801 - /subversion/trunk/subversion/svn/svn.c

Author: stsp
Date: Mon Jul 24 12:33:34 2017
New Revision: 1802801

URL: http://svn.apache.org/viewvc?rev=1802801&view=rev
Log:
Follow-up to r1802787:

* subversion/svn/svn.c
  (sub_main): Actually set the vacuum_pristines flag.

Modified:
    subversion/trunk/subversion/svn/svn.c

Modified: subversion/trunk/subversion/svn/svn.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/svn.c?rev=1802801&r1=1802800&r2=1802801&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/svn.c (original)
+++ subversion/trunk/subversion/svn/svn.c Mon Jul 24 12:33:34 2017
@@ -2516,6 +2516,9 @@ sub_main(int *exit_code, int argc, const
       case opt_adds_as_modification:
         opt_state.adds_as_modification = TRUE;
         break;
+      case opt_vacuum_pristines:
+        opt_state.vacuum_pristines = TRUE;
+        break;
       default:
         /* Hmmm. Perhaps this would be a good place to squirrel away
            opts that commands like svn diff might need. Hmmm indeed. */