tweaks: elide an unneeded check when making a backup

When making a backup, we can be certain that the relevant file
is not a temporary file, so 'stream' will necessarily be NULL.
master
Benno Schulenberg 2019-10-17 11:23:22 +02:00
parent bd0026be86
commit 4e40ec057e
1 changed files with 0 additions and 2 deletions

View File

@ -1570,7 +1570,6 @@ bool write_file(const char *name, FILE *stream, bool tmp,
filetime[0].tv_sec = openfile->current_stat->st_atime;
filetime[1].tv_sec = openfile->current_stat->st_mtime;
if (stream == NULL) {
/* Open the original file to copy to the backup. */
f = fopen(realname, "rb");
@ -1582,7 +1581,6 @@ bool write_file(const char *name, FILE *stream, bool tmp,
* nothing. */
goto skip_backup;
}
}
/* If backup_dir is set, we set backupname to
* backup_dir/backupname~[.number], where backupname is the