diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-01-24 12:27:45 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-01-24 12:30:02 +0000 |
commit | 54c94a12e787b5999338e00b50967103032f722e (patch) | |
tree | 0df51903fecda4f6f95a45e36b8c60f588248882 /community/virtualbox-guest-additions/futimens.patch | |
parent | 262629094f233d25f4c19ed7a07f556f5763b58d (diff) | |
download | aports-54c94a12e787b5999338e00b50967103032f722e.tar.bz2 aports-54c94a12e787b5999338e00b50967103032f722e.tar.xz |
community/virtualbox-guest-*: move from testing
ref #5722
Diffstat (limited to 'community/virtualbox-guest-additions/futimens.patch')
-rw-r--r-- | community/virtualbox-guest-additions/futimens.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/community/virtualbox-guest-additions/futimens.patch b/community/virtualbox-guest-additions/futimens.patch new file mode 100644 index 0000000000..f85e1ae6e2 --- /dev/null +++ b/community/virtualbox-guest-additions/futimens.patch @@ -0,0 +1,16 @@ +--- ./src/VBox/Runtime/r3/posix/fileio2-posix.cpp.orig ++++ ./src/VBox/Runtime/r3/posix/fileio2-posix.cpp +@@ -165,7 +165,12 @@ + + /* XXX this falls back to utimes("/proc/self/fd/...",...) for older kernels/glibcs and this + * will not work for hardened builds where this directory is owned by root.root and mode 0500 */ +- if (futimes(RTFileToNative(hFile), aTimevals)) ++ struct timespec aTimespecs[2] = { ++ { aTimevals[0].tv_sec, aTimevals[0].tv_usec * 1000 }, ++ { aTimevals[1].tv_sec, aTimevals[1].tv_usec * 1000 }, ++ }; ++ ++ if (futimens(RTFileToNative(hFile), aTimespecs)) + { + int rc = RTErrConvertFromErrno(errno); + Log(("RTFileSetTimes(%RTfile,%p,%p,,): returns %Rrc\n", hFile, pAccessTime, pModificationTime, rc)); |