From 82716b788e14918184e99a7ef97721fa87315959 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 6 May 1999 11:03:33 +0000 Subject: * rename.c (smart_rename): Fix test of whether file exists. --- binutils/rename.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'binutils/rename.c') diff --git a/binutils/rename.c b/binutils/rename.c index fdc7263..f8314fb 100644 --- a/binutils/rename.c +++ b/binutils/rename.c @@ -139,17 +139,17 @@ smart_rename (from, to, preserve_dates) const char *to; int preserve_dates; { - int exists; + boolean exists; struct stat s; int ret = 0; - exists = lstat (to, &s); + exists = lstat (to, &s) == 0; #if defined (_WIN32) && !defined (__CYGWIN32__) /* Win32, unlike unix, will not erase `to' in `rename(from, to)' but fail instead. Also, chown is not present. */ - if (exists == 0) + if (exists) remove (to); ret = rename (from, to); @@ -163,7 +163,7 @@ smart_rename (from, to, preserve_dates) #else /* Use rename only if TO is not a symbolic link and has only one hard link. */ - if (exists < 0 || (!S_ISLNK (s.st_mode) && s.st_nlink == 1)) + if (! exists || (!S_ISLNK (s.st_mode) && s.st_nlink == 1)) { ret = rename (from, to); if (ret == 0) -- cgit v1.1