From c9aa2a4ffcd8cd3c15cde0a3e2caeb0d6cf5454a Mon Sep 17 00:00:00 2001 From: kichik Date: Tue, 14 Sep 2004 19:26:37 +0000 Subject: [PATCH] applied patch #1028028 - POSIX-built installers install files w incorrect timestamps. git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3655 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/script.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/script.cpp b/Source/script.cpp index 2be66f21..64144a4d 100644 --- a/Source/script.cpp +++ b/Source/script.cpp @@ -4510,7 +4510,7 @@ int CEXEBuild::doCommand(int which_token, LineParser &line) } words; long long ll; }; - ll = (st.st_mtime * 10000000) + 116444736000000000LL; + ll = (st.st_mtime * 10000000LL) + 116444736000000000LL; high = words.h; low = words.l; } @@ -5770,7 +5770,7 @@ int CEXEBuild::do_add_file(const char *lgss, int attrib, int recurse, int linecn } words; long long ll; }; - ll = (st.st_mtime * 10000000) + 116444736000000000LL; + ll = (st.st_mtime * 10000000LL) + 116444736000000000LL; ent.offsets[3] = words.l; ent.offsets[4] = words.h; }