# HG changeset patch # User Dario Sestito # Date 1258721039 0 # Node ID cfb15e4d62a400b850df953c91941ae731954e0a # Parent 6e2dd2cc846d940ea055b0d02a6f2bf298c6c9a0 In letters file allow timestamp=0 to have the drive left alone diff -r 6e2dd2cc846d -r cfb15e4d62a4 build_package.pl --- a/build_package.pl Fri Nov 06 18:21:49 2009 +0000 +++ b/build_package.pl Fri Nov 20 12:43:59 2009 +0000 @@ -405,7 +405,7 @@ my $nPid=$1; my $nTimestamp=$2; - if (time()-$nTimestamp<=$nMAX_LETTER_AGE_SECONDS) + if (time()-$nTimestamp<=$nMAX_LETTER_AGE_SECONDS or $nTimestamp == 0 or $nTimestamp == -1) { $hsPidsAndTimestamps{$sLetter} = $sString; }