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 2013/10/24 13:24:00 UTC

svn commit: r1535341 - /subversion/trunk/subversion/libsvn_repos/log.c

Author: stefan2
Date: Thu Oct 24 11:24:00 2013
New Revision: 1535341

URL: http://svn.apache.org/r1535341
Log:
Follow-up to r1535330: fix a typo that broke the binding tests

* subversion/libsvn_repos/log.c
  (turn_moves_into_copies): 'V' denotes moves, not 'M'

Modified:
    subversion/trunk/subversion/libsvn_repos/log.c

Modified: subversion/trunk/subversion/libsvn_repos/log.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_repos/log.c?rev=1535341&r1=1535340&r2=1535341&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_repos/log.c (original)
+++ subversion/trunk/subversion/libsvn_repos/log.c Thu Oct 24 11:24:00 2013
@@ -180,7 +180,7 @@ turn_moves_into_copies(apr_hash_t *chang
 
       switch (change->action)
         {
-          case 'M':
+          case 'V':
             change->action = 'A';
             break;