1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

Fix value of O_TMPFILE for architectures with non-default O_DIRECTORY (bug 17912)

This commit is contained in:
Andreas Schwab
2015-02-01 14:04:15 +01:00
parent 28b067571e
commit 59b61c82fe
3 changed files with 8 additions and 2 deletions

View File

@ -97,7 +97,7 @@
# define __O_DSYNC 010000
#endif
#ifndef __O_TMPFILE
# define __O_TMPFILE 020200000
# define __O_TMPFILE (020000000 | __O_DIRECTORY)
#endif
#ifndef F_GETLK