about summary refs log tree commit diff
path: root/sysdeps/nacl/open.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2015-07-21 15:48:56 -0700
committerRoland McGrath <roland@hack.frob.com>2015-07-21 15:48:56 -0700
commit0b24551cf3a62e0dbbe7577f63b43969f8dfc1fb (patch)
treecd86e14224232e0a6bacf626979e7e5c38c1b551 /sysdeps/nacl/open.c
parent7493ab257e4d50753dfc46a342b00d0759081115 (diff)
downloadglibc-0b24551cf3a62e0dbbe7577f63b43969f8dfc1fb.tar.gz
glibc-0b24551cf3a62e0dbbe7577f63b43969f8dfc1fb.tar.xz
glibc-0b24551cf3a62e0dbbe7577f63b43969f8dfc1fb.zip
NaCl: Use only nacl_irt_dev_filename, never nacl_irt_filename.
Diffstat (limited to 'sysdeps/nacl/open.c')
-rw-r--r--sysdeps/nacl/open.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/nacl/open.c b/sysdeps/nacl/open.c
index cb4700ff24..381751a9cd 100644
--- a/sysdeps/nacl/open.c
+++ b/sysdeps/nacl/open.c
@@ -38,7 +38,7 @@ __libc_open (const char *file, int oflag, ...)
     }
 
   int fd;
-  return NACL_CALL (__nacl_irt_filename.open (file, oflag, mode, &fd), fd);
+  return NACL_CALL (__nacl_irt_dev_filename.open (file, oflag, mode, &fd), fd);
 }
 libc_hidden_def (__libc_open)
 weak_alias (__libc_open, __open)