diff options
author | 2018-02-15 13:39:15 -0600 | |
---|---|---|
committer | 2018-02-15 13:39:15 -0600 | |
commit | b6a015aa91d7ab84c2f5466f3b5704f501129cbc (patch) | |
tree | a2e5ed8570853b5e49e7c023620e111c1984f489 /ChangeLog.txt | |
parent | 23f089f480e04ca1b88df8fe1f46b864fee2a0b8 (diff) | |
download | pseudo-b6a015aa91d7ab84c2f5466f3b5704f501129cbc.tar.gz pseudo-b6a015aa91d7ab84c2f5466f3b5704f501129cbc.tar.bz2 pseudo-b6a015aa91d7ab84c2f5466f3b5704f501129cbc.zip |
Handle O_TMPFILE more better
O_TMPFILE is, on at least one system, (__O_TMPFILE | O_DIRECTORY),
so (flags & O_TMPFILE) can be non-zero even when O_TMPFILE was not set.
Signed-off-by: Seebs <seebs@seebs.net>
Diffstat (limited to 'ChangeLog.txt')
-rw-r--r-- | ChangeLog.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt index 84c5d5a..a6e4c79 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,8 @@ +2018-02-15: + * (seebs) O_TMPFILE is actually some other flag AND O_DIRECTORYy, + so a test for (flags & O_TMPFILE) does not actually test that + O_TMPFILE is set. + 2018-01-20: * (seebs) merge patch from <joshua.g.lock@linux.intel.com> to fix open/openat flags. |