(file_newer_p): Return false if file does not exist

This commit is contained in:
Sergey Poznyakoff
2005-05-12 15:39:34 +00:00
parent 29c902bc49
commit 8d064bb816

View File

@@ -440,7 +440,8 @@ file_newer_p (const char *file_name, struct tar_stat_info *tar_stat)
if (stat (file_name, &st))
{
stat_warn (file_name);
return true; /* Be on the safe side */
/* Be on the safe side: if the file does exist assume it is newer */
return errno != ENOENT;
}
if (!S_ISDIR (st.st_mode)
&& st.st_mtime >= tar_stat->stat.st_mtime)
@@ -1097,7 +1098,8 @@ prepare_to_extract (char const *file_name, int typeflag, tar_extractor_t *fun)
case KEEP_NEWER_FILES:
if (file_newer_p (file_name, &current_stat_info))
{
WARN ((0, 0, _("Current %s is newer"), quote (file_name)));
WARN ((0, 0, _("Current %s is newer or same age"),
quote (file_name)));
return 0;
}
break;