diff options
author | Denys Vlasenko | 2011-02-02 00:00:36 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-02-02 00:01:07 +0100 |
commit | c5830bdf6558edbc567d7c5dce1ff8059049e202 (patch) | |
tree | 74bdcea96383de159d406b3ce56623b8bd653f22 /modutils/modprobe.c | |
parent | 8ae386bf195c6ea53232bacd2eb8cf26676962e4 (diff) | |
download | busybox-c5830bdf6558edbc567d7c5dce1ff8059049e202.zip busybox-c5830bdf6558edbc567d7c5dce1ff8059049e202.tar.gz |
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>
Diffstat (limited to 'modutils/modprobe.c')
-rw-r--r-- | modutils/modprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c index e3bacac..8d2ccc5 100644 --- a/modutils/modprobe.c +++ b/modutils/modprobe.c @@ -589,7 +589,7 @@ int modprobe_main(int argc UNUSED_PARAM, char **argv) /* First argument is module name, rest are parameters */ DBG("probing just module %s", *argv); add_probe(argv[0]); - G.cmdline_mopts = parse_cmdline_module_options(argv); + G.cmdline_mopts = parse_cmdline_module_options(argv, /*quote_spaces:*/ 1); } /* Happens if all requested modules are already loaded */ |