소스 검색

Interpret the snapshot datestamp as GMT

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1465 f882894a-f735-0410-b71e-b25c423dba1c
Ton Voon 20 년 전
부모
커밋
4c50478efc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tools/tinderbox_build

+ 1 - 1
tools/tinderbox_build

@@ -82,7 +82,7 @@ sub BuildIt {
 		open F, $file;
 		while (<F>) {
 			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;
 			}
 		}