Skip to content

Commit

Permalink
Avoid namespace pollution.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Jul 10, 2010
1 parent 5be9d05 commit 440566c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/fpathconf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 440566c

Please sign in to comment.