Changed DEL_NO_RECURSE to DEL_RECURSE.
authorWayne Davison <wayned@samba.org>
Thu, 20 Jan 2005 23:51:52 +0000 (23:51 +0000)
committerWayne Davison <wayned@samba.org>
Thu, 20 Jan 2005 23:51:52 +0000 (23:51 +0000)
rsync.h

diff --git a/rsync.h b/rsync.h
index 2a9918b..ab3e820 100644 (file)
--- a/rsync.h
+++ b/rsync.h
 #define FNAMECMP_BACKUP        0x82
 
 /* For calling delete_file() */
-#define DEL_DIR                        (1<<0)
-#define DEL_NO_RECURSE         (1<<1)
+#define DEL_DIR                (1<<0)
+#define DEL_RECURSE            (1<<1) /* recurse even w/o --force */
 #define DEL_TERSE              (1<<2)