On Thu, Dec 06, 2001 at 11:07:01AM +0100, Joerg, Harald wrote:
> I suggest the following patch so that ttree considers
> files with equal mtime to be "not modified":
> (ttree v 2.31)
>
> --- ttree.orig Thu Dec 6 09:47:07 2001
> +++ ttree Thu Dec 6 09:53:53 2001
> @@ -253,7 +253,7 @@
> if (-f $dest && ! $all) {
> $desttime = ( stat($dest) )[9];
>
> - if ($desttime > $srctime) {
> + if ($desttime >= $srctime) {Applied, thanks. Sorry it took so long :-) A
