[prev in list] [next in list] [prev in thread] [next in thread] 

List:       subversion-cvs
Subject:    svn commit: rev 571 - trunk/subversion/libsvn_wc
From:       gstein () tigris ! org
Date:       2001-11-29 22:43:12
[Download RAW message or body]

Author: gstein
Date: 2001-11-29 22:43 GMT
New Revision: 571

Modified:
   trunk/subversion/libsvn_wc/adm_crawler.c
Log:
(report_single_mod): ! binds tighter than ==. The result is that the
  verify_tree_deletion() would never be called. Simply using != works
  as desired.


Modified: trunk/subversion/libsvn_wc/adm_crawler.c
==============================================================================
--- OLD/trunk/subversion/libsvn_wc/adm_crawler.c	Thu Nov 29 16:43:12 2001
+++ NEW/trunk/subversion/libsvn_wc/adm_crawler.c	Thu Nov 29 16:43:12 2001
@@ -1119,7 +1119,7 @@
          sure that all the directory's children are also marked for
          deletion.  If not, we're in a screwy state. */
       if ((entry->kind == svn_node_dir) 
-          && (! entry->existence == svn_wc_existence_deleted))
+          && (entry->existence != svn_wc_existence_deleted))
         SVN_ERR (verify_tree_deletion (full_path, entry->schedule, 
                                        (*stack)->pool));
 


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic