]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Avoid namespace pollution.
authorUlrich Drepper <drepper@redhat.com>
Sat, 10 Jul 2010 02:25:23 +0000 (19:25 -0700)
committerUlrich Drepper <drepper@redhat.com>
Sat, 10 Jul 2010 02:25:23 +0000 (19:25 -0700)
ChangeLog
sysdeps/unix/sysv/linux/fpathconf.c

index 3e58a1831e3481dcc91b54bb0db0402b5a456e93..c6d9b1afe55e0a1400d396f6ea607ebe17df0747 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-07-09  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Use __fcntl not
+       fcntl.
+
 2010-07-06  Andreas Schwab  <schwab@redhat.com>
 
        * elf/dl-version.c (match_symbol): Don't pass NULL occation to
index 67dc3845f2ab7b40fe76040809286df6171c1b9e..617a5a93cfae96c908ef1d2c9ca67e7051cf9abe 100644 (file)
@@ -52,7 +52,7 @@ __fpathconf (fd, name)
       return __statfs_chown_restricted (__fstatfs (fd, &fsbuf), &fsbuf);
 
     case _PC_PIPE_BUF:
-      r = fcntl (fd, F_GETPIPE_SZ);
+      r = __fcntl (fd, F_GETPIPE_SZ);
       if (r > 0)
        return r;
       /* FALLTHROUGH */