diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-09-06 22:42:26 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-09-06 22:42:26 -0400 |
commit | 4504dd3599404a916f104e0c715a9bcf3fb0062b (patch) | |
tree | 7cf605481dae9ce89096c429c634e70ee7c9240e /eval.c | |
parent | c3dcb94d52ea36bc1cefa2ccd4a7f305ba4df889 (diff) | |
download | bfs-4504dd3599404a916f104e0c715a9bcf3fb0062b.tar.xz |
util: Factor out checks for nonexistent paths/broken links
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -56,7 +56,7 @@ struct eval_state { */ static bool eval_should_ignore(const struct eval_state *state, int error) { return state->cmdline->ignore_races - && (error == ENOENT || errno == ENOTDIR) + && is_nonexistence_error(error) && state->ftwbuf->depth > 0; } @@ -829,7 +829,7 @@ bool eval_xtype(const struct expr *expr, struct eval_state *state) { struct stat sb; if (fstatat(ftwbuf->at_fd, ftwbuf->at_path, &sb, at_flags) != 0) { - if (!follow && (errno == ENOENT || errno == ENOTDIR)) { + if (!follow && is_nonexistence_error(errno)) { // Broken symlink return eval_type(expr, state); } else { |