diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-12-20 10:50:52 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-12-20 10:50:52 +0000 |
commit | 7d0bcd10a7e3455697985522580267c8470cfcb9 (patch) | |
tree | e297bb71c9979eda34a12ca4f3ff1acf5194d886 /stdio-common | |
parent | 2c6cfe6853a30deb4af842aacc924fa298d0521a (diff) | |
download | glibc-7d0bcd10a7e3455697985522580267c8470cfcb9.tar glibc-7d0bcd10a7e3455697985522580267c8470cfcb9.tar.gz glibc-7d0bcd10a7e3455697985522580267c8470cfcb9.tar.bz2 glibc-7d0bcd10a7e3455697985522580267c8470cfcb9.zip |
Updated to fedora-glibc-20051220T1028
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/renameat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/renameat.c b/stdio-common/renameat.c index e8629098df..e09c5933ed 100644 --- a/stdio-common/renameat.c +++ b/stdio-common/renameat.c @@ -29,7 +29,7 @@ renameat (oldfd, old, newfd, new) int newfd; const char *new; { - if ((oldfd < 0 & oldfd !_ AT_FDCWD) || (newfd < 0 && newfd != AT_FDCWD)) + if ((oldfd < 0 & oldfd != AT_FDCWD) || (newfd < 0 && newfd != AT_FDCWD)) { __set_errno (EBADF); return -1; |