treewide: use is_missing_file_error() where ENOENT and ENOTDIR are checked
Using the is_missing_file_error() helper introduced in the previous step, update all hits from $ git grep -e ENOENT --and -e ENOTDIR There are codepaths that only check ENOENT, and it is possible that some of them should be checking both. Updating them is kept out of this step deliberately, as we do not want to change behaviour in this step. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
2
setup.c
2
setup.c
@ -147,7 +147,7 @@ int check_filename(const char *prefix, const char *arg)
|
||||
name = arg;
|
||||
if (!lstat(name, &st))
|
||||
return 1; /* file exists */
|
||||
if (errno == ENOENT || errno == ENOTDIR)
|
||||
if (is_missing_file_error(errno))
|
||||
return 0; /* file does not exist */
|
||||
die_errno("failed to stat '%s'", arg);
|
||||
}
|
||||
|
Reference in New Issue
Block a user