From 7d0bcd10a7e3455697985522580267c8470cfcb9 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Tue, 20 Dec 2005 10:50:52 +0000 Subject: Updated to fedora-glibc-20051220T1028 --- stdio-common/renameat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stdio-common/renameat.c') 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; -- cgit v1.2.3