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
This commit is contained in:
kichik 2004-09-14 19:26:37 +00:00
parent a84b5fe2b1
commit c9aa2a4ffc

View file

@ -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;
}