about summary refs log tree commit diff
path: root/sysdeps/unix/opendir.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/opendir.c')
-rw-r--r--sysdeps/unix/opendir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/opendir.c b/sysdeps/unix/opendir.c
index 927caab70f..4b21e642e8 100644
--- a/sysdeps/unix/opendir.c
+++ b/sysdeps/unix/opendir.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991,92,93,94,95,96,98,2000 Free Software Foundation, Inc.
+/* Copyright (C) 1991-1996,98,2000,2001 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -110,7 +110,7 @@ __opendir (const char *name)
 	 }
     }
 
-  fd = __open (name, O_RDONLY|O_NDELAY|EXTRA_FLAGS);
+  fd = __open64 (name, O_RDONLY|O_NDELAY|EXTRA_FLAGS);
   if (__builtin_expect (fd, 0) < 0)
     return NULL;