Decode the O_PATH flag

* file.c (open_mode_flags): Add O_PATH.
This commit is contained in:
Mike Frysinger 2013-12-31 01:13:27 -05:00 committed by Dmitry V. Levin
parent 5b35147cad
commit 5e7470386e

3
file.c
View File

@ -274,6 +274,9 @@ const struct xlat open_mode_flags[] = {
#ifdef O_CLOEXEC
{ O_CLOEXEC, "O_CLOEXEC" },
#endif
#ifdef O_PATH
{ O_PATH, "O_PATH" },
#endif
#ifdef FNDELAY
{ FNDELAY, "FNDELAY" },
#endif