From: Emil Velikov Date: Mon, 30 Sep 2024 13:23:13 +0000 (+0100) Subject: tools/insmod: args -> module options X-Git-Tag: v34~265 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=001f2ad4b98edf0baa247a13188c48e746551e9c;p=thirdparty%2Fkmod.git tools/insmod: args -> module options Align the help message with the manual page, swapping the ambiguous "args" with module options. Reference: https://lore.kernel.org/linux-modules/ZvknyLKvQeBo16n9@meinfjell.helgefjelltest.de Reported-by: Helge Kreutzmann Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/164 Signed-off-by: Lucas De Marchi --- diff --git a/tools/insmod.c b/tools/insmod.c index f1a8d89e..02eea913 100644 --- a/tools/insmod.c +++ b/tools/insmod.c @@ -30,7 +30,7 @@ static const struct option cmdopts[] = { static void help(void) { printf("Usage:\n" - "\t%s [options] filename [args]\n" + "\t%s [options] filename [module options]\n" "Options:\n" "\t-f, --force DANGEROUS: forces a module load, may cause\n" "\t data corruption and crash your machine\n"