You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by rh...@apache.org on 2012/07/25 14:31:33 UTC

svn commit: r1365554 - /subversion/trunk/subversion/libsvn_wc/adm_ops.c

Author: rhuijben
Date: Wed Jul 25 12:31:33 2012
New Revision: 1365554

URL: http://svn.apache.org/viewvc?rev=1365554&view=rev
Log:
* subversion/libsvn_wc/adm_ops.c
  (revert_partial): Verify type of the child for depth processing (instead
    of type of the parent *directory*). This fixes the problem checked for
    since r1365549.

Modified:
    subversion/trunk/subversion/libsvn_wc/adm_ops.c

Modified: subversion/trunk/subversion/libsvn_wc/adm_ops.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/adm_ops.c?rev=1365554&r1=1365553&r2=1365554&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/adm_ops.c (original)
+++ subversion/trunk/subversion/libsvn_wc/adm_ops.c Wed Jul 25 12:31:33 2012
@@ -2119,7 +2119,7 @@ revert_partial(svn_wc__db_t *db,
         {
           svn_kind_t kind;
 
-          SVN_ERR(svn_wc__db_read_kind(&kind, db, local_abspath,
+          SVN_ERR(svn_wc__db_read_kind(&kind, db, child_abspath,
                                        FALSE /* allow_missing */,
                                        FALSE /* show_hidden */,
                                        iterpool));