diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2016-01-30 14:00:02 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2016-01-30 14:00:02 -0500 |
commit | 132dc9eaf7d6aa9e7892d9b55889f762f1140f4d (patch) | |
tree | 3c8dd890176873edcbc4a06852b4a64690c53488 /parse.c | |
parent | 3f9f913f5302b71ef57467798f62dd3e83b217bc (diff) | |
download | bfs-132dc9eaf7d6aa9e7892d9b55889f762f1140f4d.tar.xz |
Implement -empty.
Diffstat (limited to 'parse.c')
-rw-r--r-- | parse.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -348,6 +348,8 @@ static expression *parse_literal(parser_state *state) { } else if (strcmp(arg, "-d") == 0 || strcmp(arg, "-depth") == 0) { state->cl->flags |= BFTW_DEPTH; return new_option(state, arg); + } else if (strcmp(arg, "-empty") == 0) { + return new_test(state, eval_empty); } else if (strcmp(arg, "-executable") == 0) { return new_test_idata(state, eval_access, X_OK); } else if (strcmp(arg, "-false") == 0) { |