From: Tobias Stoeckmann Date: Mon, 2 Dec 2024 18:35:04 +0000 (+0100) Subject: tools: Unify help messages X-Git-Tag: v34~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38641ee477cec85710807043a71967a0d9685669;p=thirdparty%2Fkmod.git tools: Unify help messages Unify help messages shown when kmod is called without any arguments to use the same grammar and capitalisation. Signed-off-by: Tobias Stoeckmann Link: https://github.com/kmod-project/kmod/pull/265 Signed-off-by: Lucas De Marchi --- diff --git a/tools/kmod.c b/tools/kmod.c index 835970b7..434dd049 100644 --- a/tools/kmod.c +++ b/tools/kmod.c @@ -76,7 +76,7 @@ static int kmod_help(int argc, char *argv[]) static const struct kmod_cmd kmod_cmd_help = { .name = "help", .cmd = kmod_help, - .help = "Show help message", + .help = "show help message", }; static int handle_kmod_commands(int argc, char *argv[]) diff --git a/tools/static-nodes.c b/tools/static-nodes.c index cb8afd37..4914d0c3 100644 --- a/tools/static-nodes.c +++ b/tools/static-nodes.c @@ -274,5 +274,5 @@ finish: const struct kmod_cmd kmod_cmd_static_nodes = { .name = "static-nodes", .cmd = do_static_nodes, - .help = "outputs the static-node information installed with the currently running kernel", + .help = "output the static-node information installed with the currently running kernel", };