summaryrefslogtreecommitdiff
path: root/io/openat.c
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2013-05-26 16:36:38 +0200
committerThomas Schwinge <thomas@codesourcery.com>2013-05-26 16:36:38 +0200
commitd039799a1b50e31a5540b93436920136be175f69 (patch)
tree33c8e3e05f87072c7f84cc4b667dc1f2d5a211d6 /io/openat.c
parentf91483a3b3da75c9ff2c074a5ce206ad3375c5f5 (diff)
parent9a079e270a9bec7e1fe28aeda63e07c1bb808d44 (diff)
Merge commit 'refs/top-bases/t/nfds-poll' into t/nfds-poll
Diffstat (limited to 'io/openat.c')
-rw-r--r--io/openat.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/io/openat.c b/io/openat.c
index 16b11916bd..3722c58236 100644
--- a/io/openat.c
+++ b/io/openat.c
@@ -75,16 +75,6 @@ libc_hidden_def (__openat)
weak_alias (__openat, openat)
stub_warning (openat)
-
-int
-__openat_2 (fd, file, oflag)
- int fd;
- const char *file;
- int oflag;
-{
- if (oflag & O_CREAT)
- __fortify_fail ("invalid openat call: O_CREAT without mode");
-
- return __openat (fd, file, oflag);
-}
+/* __openat_2 is a generic wrapper that calls __openat.
+ So give a stub warning for that symbol too. */
stub_warning (__openat_2)