From 2ca002f4af22aabbed89434440fc3443c8619295 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Tue, 3 Dec 2019 21:49:06 +0100 Subject: exit(2) on unsupported positional arguments on command line Change-Id: I3b8781e220326387f1c437c39aff8661326f1e0a --- src/utils/bs11_config.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/utils') diff --git a/src/utils/bs11_config.c b/src/utils/bs11_config.c index 2a2340c4a..7cd420354 100644 --- a/src/utils/bs11_config.c +++ b/src/utils/bs11_config.c @@ -854,6 +854,10 @@ static void handle_options(int argc, char **argv) if (optind+1 < argc) value = argv[optind+1]; } + if (optind+2 < argc) { + fprintf(stderr, "Unsupported positional arguments on command line\n"); + exit(2); + } } -- cgit v1.2.3