diff options
author | Jérôme Vouillon <vouillon@pps.jussieu.fr> | 2009-07-10 19:51:15 +0000 |
---|---|---|
committer | Jérôme Vouillon <vouillon@pps.jussieu.fr> | 2009-07-10 19:51:15 +0000 |
commit | 005a53075b998dba27eeff74a1fc8f9d73558fb8 (patch) | |
tree | d81d2687b5f96bd57b9b86e5ebd50ed172794a33 /src/recon.mli | |
parent | 59e44114fd936c3f53f1d39c6cf442f5921bc243 (diff) | |
download | unison-005a53075b998dba27eeff74a1fc8f9d73558fb8.zip unison-005a53075b998dba27eeff74a1fc8f9d73558fb8.tar.gz unison-005a53075b998dba27eeff74a1fc8f9d73558fb8.tar.bz2 |
* Fixed bug with case insensitive mode on a case sensitive filesystem:
- if file "a/a" is created on one replica and directory "A" is
created on the other, the file failed to be synchronized the first
time Unison is run afterwards, as Unison uses the wrong path "a/a"
(if Unison is run again, the directories are in the archive, so
the right path is used);
- if file "a" appears on one replica and file "A" appears on the
other with a different contents, Unison was unable to synchronized
them.
Diffstat (limited to 'src/recon.mli')
-rw-r--r-- | src/recon.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/recon.mli b/src/recon.mli index 42fcfad..a924965 100644 --- a/src/recon.mli +++ b/src/recon.mli @@ -4,7 +4,7 @@ val reconcileAll : ?allowPartial:bool (* whether we allow partial synchronization of directories (default to false) *) - -> Common.updateItem list Common.oneperpath + -> (Path.t * Common.updateItem * Path.t * Common.updateItem) list (* one updateItem per replica, per path *) -> Common.reconItem list (* List of updates that need propagated *) * bool (* Any file updated equally on all roots*) |