diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-02 00:00:36 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-02-02 00:01:07 +0100 |
commit | c5830bdf6558edbc567d7c5dce1ff8059049e202 (patch) | |
tree | 74bdcea96383de159d406b3ce56623b8bd653f22 /modutils/insmod.c | |
parent | 8ae386bf195c6ea53232bacd2eb8cf26676962e4 (diff) | |
download | busybox-w32-c5830bdf6558edbc567d7c5dce1ff8059049e202.tar.gz busybox-w32-c5830bdf6558edbc567d7c5dce1ff8059049e202.tar.bz2 busybox-w32-c5830bdf6558edbc567d7c5dce1ff8059049e202.zip |
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/insmod.c')
-rw-r--r-- | modutils/insmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index e5b46f402..94e4e2863 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c | |||
@@ -59,7 +59,7 @@ int insmod_main(int argc UNUSED_PARAM, char **argv) | |||
59 | if (!filename) | 59 | if (!filename) |
60 | bb_show_usage(); | 60 | bb_show_usage(); |
61 | 61 | ||
62 | rc = bb_init_module(filename, parse_cmdline_module_options(argv)); | 62 | rc = bb_init_module(filename, parse_cmdline_module_options(argv, /*quote_spaces:*/ 0)); |
63 | if (rc) | 63 | if (rc) |
64 | bb_error_msg("can't insert '%s': %s", filename, moderror(rc)); | 64 | bb_error_msg("can't insert '%s': %s", filename, moderror(rc)); |
65 | 65 | ||