]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Replaced MISSING_OK, MISSING_FATAL, ADD_INCLUDE, and ADD_EXCLUDE with
authorWayne Davison <wayned@samba.org>
Mon, 12 Apr 2004 17:42:35 +0000 (17:42 +0000)
committerWayne Davison <wayned@samba.org>
Mon, 12 Apr 2004 17:42:35 +0000 (17:42 +0000)
some new XFLG_* values (for the add_exclude*() function).

rsync.h

diff --git a/rsync.h b/rsync.h
index e9dc490f336be9d8ab41f106bca2b52d56aac294..973840a86434865e01a82edf360874e379292fb4 100644 (file)
--- a/rsync.h
+++ b/rsync.h
 #define SERVER_EXCLUDES        1
 #define ALL_EXCLUDES   2
 
-#define MISSING_OK    0
-#define MISSING_FATAL 1
-
-#define ADD_INCLUDE 1
-#define ADD_EXCLUDE 0
+#define XFLG_FATAL_ERRORS      (1<<0)
+#define XFLG_DEF_INCLUDE       (1<<1)
+#define XFLG_NO_PREFIXES       (1<<2)
+#define XFLG_WORD_SPLIT        (1<<3)
 
 #define FULL_FLUSH     1
 #define NORMAL_FLUSH   0