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 2011/04/26 21:39:14 UTC

svn commit: r1096866 - /subversion/trunk/subversion/libsvn_wc/node.c

Author: rhuijben
Date: Tue Apr 26 19:39:14 2011
New Revision: 1096866

URL: http://svn.apache.org/viewvc?rev=1096866&view=rev
Log:
* subversion/libsvn_wc/node.c
  (svn_wc__check_for_obstructions): Fix up some copy&paste code.

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

Modified: subversion/trunk/subversion/libsvn_wc/node.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/node.c?rev=1096866&r1=1096865&r2=1096866&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/node.c (original)
+++ subversion/trunk/subversion/libsvn_wc/node.c Tue Apr 26 19:39:14 2011
@@ -1716,9 +1716,9 @@ svn_wc__check_for_obstructions(svn_wc_no
   if (versioned)
     *versioned = FALSE;
   if (added)
-    *versioned = FALSE;
+    *added = FALSE;
   if (deleted)
-    *versioned = FALSE;
+    *deleted = FALSE;
   if (kind)
     *kind = svn_node_none;