From: David Dykstra Date: Fri, 24 Jan 2003 22:07:22 +0000 (+0000) Subject: Change default of --modify-window on Cygwin from 2 to 1 because that's all X-Git-Tag: v2.5.6~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=066696644f8fa36f5ca3be116d015ded400266de;p=thirdparty%2Frsync.git Change default of --modify-window on Cygwin from 2 to 1 because that's all that's needed on FAT filesystems. NTFS filesystems can do with a window of 0, but it shouldn't hurt because it's highly unlikely that any given file will be modified within one second of the time that rsync last copied it. --- diff --git a/NEWS b/NEWS index 35a921ee..63ebd58c 100644 --- a/NEWS +++ b/NEWS @@ -31,7 +31,7 @@ rsync changes since last release * Properly support IPv6 addresses in the rsyncd.conf "hosts allow" and "hosts deny" fields. (Hideaki Yoshifuji) - * Set the default value of --modify-window to 2 on Cygwin. (Lapo + * Set the default value of --modify-window to 1 on Cygwin. (Lapo Luchini) * Ignore errors from chmod when -p/-a/--preserve-perms is not set. diff --git a/configure.in b/configure.in index 539b83b0..31fd57d2 100644 --- a/configure.in +++ b/configure.in @@ -249,7 +249,7 @@ fi AC_MSG_CHECKING([default value for --modify-window]) case $host_os in - *cygwin* ) DEFAULT_MODIFY_WINDOW=${DEFAULT_MODIFY_WINDOW:-2};; + *cygwin* ) DEFAULT_MODIFY_WINDOW=${DEFAULT_MODIFY_WINDOW:-1};; * ) DEFAULT_MODIFY_WINDOW=${DEFAULT_MODIFY_WINDOW:-0};; esac AC_MSG_RESULT($DEFAULT_MODIFY_WINDOW)