2004-08-10 Dmitry V. Levin * src/install.c (change_timestamps): Fix int->bool conversion bugs introduced at 2004-07-29. --- coreutils-200408100654.orig/src/install.c 2004-08-03 00:14:39 +0400 +++ coreutils-200408100654/src/install.c 2004-08-10 21:19:10 +0400 @@ -538,7 +538,7 @@ change_timestamps (const char *from, con if (stat (from, &stb)) { error (0, errno, _("cannot obtain time stamps for %s"), quote (from)); - return true; + return false; } timespec[0].tv_sec = stb.st_atime; @@ -548,9 +548,9 @@ change_timestamps (const char *from, con if (utimens (to, timespec)) { error (0, errno, _("cannot set time stamps for %s"), quote (to)); - return true; + return false; } - return false; + return true; } /* Strip the symbol table from the file PATH.