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/modutils.h | |
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/modutils.h')
-rw-r--r-- | modutils/modutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modutils/modutils.h b/modutils/modutils.h index 863bc26d3..5f059c716 100644 --- a/modutils/modutils.h +++ b/modutils/modutils.h | |||
@@ -21,7 +21,7 @@ void replace(char *s, char what, char with) FAST_FUNC; | |||
21 | char *replace_underscores(char *s) FAST_FUNC; | 21 | char *replace_underscores(char *s) FAST_FUNC; |
22 | int string_to_llist(char *string, llist_t **llist, const char *delim) FAST_FUNC; | 22 | int string_to_llist(char *string, llist_t **llist, const char *delim) FAST_FUNC; |
23 | char *filename2modname(const char *filename, char *modname) FAST_FUNC; | 23 | char *filename2modname(const char *filename, char *modname) FAST_FUNC; |
24 | char *parse_cmdline_module_options(char **argv) FAST_FUNC; | 24 | char *parse_cmdline_module_options(char **argv, int quote_spaces) FAST_FUNC; |
25 | 25 | ||
26 | /* insmod for 2.4 and modprobe's options (insmod 2.6 has no options at all): */ | 26 | /* insmod for 2.4 and modprobe's options (insmod 2.6 has no options at all): */ |
27 | #define INSMOD_OPTS \ | 27 | #define INSMOD_OPTS \ |