In letters file allow timestamp=0 to have the drive left alone
authorDario Sestito <darios@symbian.org>
Fri, 20 Nov 2009 12:43:59 +0000
changeset 61 cfb15e4d62a4
parent 60 6e2dd2cc846d
child 62 2797c7d55e8b
In letters file allow timestamp=0 to have the drive left alone
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;
 					}