If there are some spaces in the insmod command line, then
this will be splitted in single words as separate elements of
argv. It just needs to chain them together in the options string
passed to the sys_init_module syscall.

Signed-off-by: Carmelo Amoroso <[email protected]>
---
 modutils/modutils.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/modutils/modutils.c b/modutils/modutils.c
index 2608182..cc718db 100644
--- a/modutils/modutils.c
+++ b/modutils/modutils.c
@@ -71,8 +71,7 @@ char* FAST_FUNC parse_cmdline_module_options(char **argv)
        optlen = 0;
        while (*++argv) {
                options = xrealloc(options, optlen + 2 + strlen(*argv) + 2);
-               /* Spaces handled by "" pairs, but no way of escaping quotes */
-               optlen += sprintf(options + optlen, (strchr(*argv, ' ') ? 
"\"%s\" " : "%s "), *argv);
+               optlen += sprintf(options + optlen, "%s ", *argv);
        }
        return options;
 }
-- 
1.5.5.6

_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to