]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
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 2a9918b018cb1936ba54d91434c4b110b8b030e1..ab3e8200db1af45ffad3cff0e632ae46bf61fc45 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)