[SCM] The rsync repository. - branch b3.0.x updated
Rsync CVS commit messages <[email protected]> Sun, 30 Jan 2011 06:00:18 +0100 (CET)
| Newsgroups | gmane.network.rsync.cvs |
|---|---|
| Message-ID | <[email protected]> |
The branch, b3.0.x has been updated
via 2064c28 Move FLAG_DEL_NEEDS_UID into the "not stored" section.
from c499002 Fix a random flist data bug w/delete, inc-recurse, and no -o. Fixes bug 7936.
;a=shortlog;h=b3.0.x
- Log -----------------------------------------------------------------
commit 2064c28d6ddcc4bc11abe3092620a9730045f845
Author: Wayne Davison <[email protected]>
Date: Sat Jan 29 20:52:38 2011 -0800
Move FLAG_DEL_NEEDS_UID into the "not stored" section.
-----------------------------------------------------------------------
Summary of changes:
rsync.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/rsync.h b/rsync.h
index cd4cb8d..f7b208b 100644
--- a/rsync.h
+++ b/rsync.h
@@ -83,8 +83,8 @@
/* These flags are passed to functions but not stored. */
-#define FLAG_DEL_NEEDS_UID (1<<15)/* generator, but must be unique */
#define FLAG_DIVERT_DIRS (1<<16)/* sender, but must be unique */
+#define FLAG_DEL_NEEDS_UID (1<<17)/* generator, but must be unique */
/* These flags are for get_dirlist(). */
#define GDL_IGNORE_FILTER_RULES (1<<0)
--
The rsync repository.