summaryrefslogtreecommitdiffstats
path: root/src/files.ml
diff options
context:
space:
mode:
authorJérôme Vouillon <vouillon@pps.jussieu.fr>2009-07-10 14:55:30 +0000
committerJérôme Vouillon <vouillon@pps.jussieu.fr>2009-07-10 14:55:30 +0000
commit59e44114fd936c3f53f1d39c6cf442f5921bc243 (patch)
tree4e39bee39d45349306ca30dfe3c784e87e034ff1 /src/files.ml
parentcd2c0928e21058fd032ae6d8170dc9565ada3dd1 (diff)
downloadunison-59e44114fd936c3f53f1d39c6cf442f5921bc243.zip
unison-59e44114fd936c3f53f1d39c6cf442f5921bc243.tar.gz
unison-59e44114fd936c3f53f1d39c6cf442f5921bc243.tar.bz2
* Accurate computation of the amount of data to transfer
* Accurate update of the amount of data transferred, including: - when transferring by copying on the remote host - when the file was already transferred to the remote host - in case of errors * Text UI: list partially transferred directories in transfer summary and use appropriate exit code (indicating that some files were skipped) * Improved error reporting when the destination is updated during synchronization: Unison now tells which file has been updated, and how. * Fix include directive failure when the line ends by CRLF (the CR was not removed) * Limit the length of temporary file names * Ignore errors when writing to the log file * Mac UI: some performance improvements * GTK UI: possibility to display errors in auxiliary detail window + other small changes * Save archive after update detection when there is no archive on disk yet * GTK UI: Made restart work also when roots are given from the command line
Diffstat (limited to 'src/files.ml')
-rw-r--r--src/files.ml1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/files.ml b/src/files.ml
index eb603d8..9999519 100644
--- a/src/files.ml
+++ b/src/files.ml
@@ -366,7 +366,6 @@ let rec deleteSpuriousChildrenRec fspathTo pathTo archChildren children =
()
let deleteSpuriousChildrenLocal (_, (fspathTo, pathTo, archChildren)) =
-List.iter (fun nm -> Format.eprintf "%s@." (Name.toString nm)) archChildren;
deleteSpuriousChildrenRec
fspathTo pathTo archChildren
(List.sort Name.compare (Os.childrenOf fspathTo pathTo));