modprobe/insmod: fix parameter quoting
function old new delta parse_cmdline_module_options 102 157 +55 modprobe_main 657 662 +5 insmod_main 68 70 +2 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 3/0 up/down: 62/0) Total: 62 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@ -59,7 +59,7 @@ int insmod_main(int argc UNUSED_PARAM, char **argv)
|
||||
if (!filename)
|
||||
bb_show_usage();
|
||||
|
||||
rc = bb_init_module(filename, parse_cmdline_module_options(argv));
|
||||
rc = bb_init_module(filename, parse_cmdline_module_options(argv, /*quote_spaces:*/ 0));
|
||||
if (rc)
|
||||
bb_error_msg("can't insert '%s': %s", filename, moderror(rc));
|
||||
|
||||
|
Reference in New Issue
Block a user