commit 033adea0cf901bbb0edf696bcbdc5e88113acd8d parent 9843cac8b359efb2bbaed3547cf427ccbeb4e381 Author: Christian Grothoff <christian@grothoff.org> Date: Mon, 6 Jul 2026 10:53:07 +0200 challenger-admin: fail if no operation is selected Diffstat:
| M | src/challenger/challenger-admin.c | | | 3 | +++ |
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/challenger/challenger-admin.c b/src/challenger/challenger-admin.c @@ -240,6 +240,9 @@ run (void *cls, } goto cleanup; } + fprintf (stderr, + "No operation specified. Use '-a', '-d', or '-m' to select an action.\n"); + global_ret = EXIT_INVALIDARGUMENT; cleanup: CHALLENGERDB_disconnect (db); }