Changed DEL_NO_RECURSE to DEL_RECURSE.
[rsync/rsync.git] / 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)