diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2025-04-01 07:24:31 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2025-04-01 07:28:02 -0400 |
commit | 37b4f3c9450d61fadc888f83e2f547b2beb15980 (patch) | |
tree | a1885c0ca5cf25c51c32bd0d4e8d9a1f14425ba8 /src/parse.c | |
parent | 9c911d74fa351985016d89e8b61b2869111bde71 (diff) | |
download | bfs-37b4f3c9450d61fadc888f83e2f547b2beb15980.tar.xz |
parse: Disallow -files0-from with explicit roots
This matches the behaviour of GNU find.
Diffstat (limited to 'src/parse.c')
-rw-r--r-- | src/parse.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/parse.c b/src/parse.c index 58a900f..9c39d6b 100644 --- a/src/parse.c +++ b/src/parse.c @@ -3521,7 +3521,25 @@ static struct bfs_expr *parse_expr(struct bfs_parser *parser) { /** Handle -files0-from after parsing. */ static int parse_files0_roots(struct bfs_parser *parser) { + const struct bfs_ctx *ctx = parser->ctx; const struct bfs_expr *expr = parser->files0_expr; + + if (ctx->npaths > 0) { + bool highlight[ctx->argc]; + init_highlight(ctx, highlight); + highlight_args(ctx, expr->argv, expr->argc, highlight); + + for (size_t i = 0; i < ctx->argc; ++i) { + if (ctx->kinds[i] == BFS_PATH) { + highlight[i] = true; + } + } + + bfs_argv_error(ctx, highlight); + bfs_error(ctx, "Cannot combine %pX with explicit root paths.\n", expr); + return -1; + } + const char *from = expr->argv[1]; FILE *file; |