From: Ton Voon Date: Thu, 3 Aug 2006 08:14:09 +0000 (+0000) Subject: Interpret the snapshot datestamp as GMT X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4c50478efce19e079c030574e1b23bf02a50573a;p=nagiosplug.git Interpret the snapshot datestamp as GMT git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1465 f882894a-f735-0410-b71e-b25c423dba1c --- diff --git a/tools/tinderbox_build b/tools/tinderbox_build index 862f1c1..44e3dfe 100755 --- a/tools/tinderbox_build +++ b/tools/tinderbox_build @@ -82,7 +82,7 @@ sub BuildIt { open F, $file; while () { if (/^Version: HEAD-(\d\d\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/) { - $StartTime = timelocal(0, $5, $4, $3, ($2 - 1), ($1 - 1900)); + $StartTime = timegm(0, $5, $4, $3, ($2 - 1), ($1 - 1900)); last; } }