summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rdiff-backup/CHANGELOG3
-rw-r--r--rdiff-backup/rdiff_backup/Globals.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/rdiff-backup/CHANGELOG b/rdiff-backup/CHANGELOG
index ab7ba40..b721602 100644
--- a/rdiff-backup/CHANGELOG
+++ b/rdiff-backup/CHANGELOG
@@ -12,6 +12,9 @@ Librsync signature blocksize now based on square root of file length.
rdiff-backup now writes its PID to current_mirror marker (suggested by
Kevin Spicer).
+fsync_directories defaults to None, to avoid errors in testing
+(suggestion by Charles Duffy).
+
New in v1.0.0 (2005/08/14)
--------------------------
diff --git a/rdiff-backup/rdiff_backup/Globals.py b/rdiff-backup/rdiff_backup/Globals.py
index f14058f..dd5dc9b 100644
--- a/rdiff-backup/rdiff_backup/Globals.py
+++ b/rdiff-backup/rdiff_backup/Globals.py
@@ -210,7 +210,7 @@ compare_inode = 1
# If set, directories can be fsync'd just like normal files, to
# guarantee that any changes have been committed to disk.
-fsync_directories = 1
+fsync_directories = None
# If set, exit with error instead of dropping ACLs or ACL entries.
never_drop_acls = None