aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-08-25 18:26:46 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2010-08-25 18:26:46 +0200
commit1cd0d8600524de01d643db32bc05f4d4d0c30436 (patch)
tree7bdadc6feea96f248ce20059a59f58a7356ca802
parent1396221d5a741ef8e1e8abca88836b341a3cab84 (diff)
downloadbusybox-w32-1cd0d8600524de01d643db32bc05f4d4d0c30436.tar.gz
busybox-w32-1cd0d8600524de01d643db32bc05f4d4d0c30436.tar.bz2
busybox-w32-1cd0d8600524de01d643db32bc05f4d4d0c30436.zip
modutils: explain why we no longer quote params
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
-rw-r--r--modutils/modutils.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/modutils/modutils.c b/modutils/modutils.c
index cc718dbca..565d0d22f 100644
--- a/modutils/modutils.c
+++ b/modutils/modutils.c
@@ -71,6 +71,11 @@ char* FAST_FUNC parse_cmdline_module_options(char **argv)
71 optlen = 0; 71 optlen = 0;
72 while (*++argv) { 72 while (*++argv) {
73 options = xrealloc(options, optlen + 2 + strlen(*argv) + 2); 73 options = xrealloc(options, optlen + 2 + strlen(*argv) + 2);
74 /* Older versions were enclosing space-containing *argv in "",
75 * but both modprobe and insmod from module-init-tools 3.11.1
76 * don't do this anymore. (As to extra trailing space,
77 * insmod adds it but modprobe does not. We do in both cases)
78 */
74 optlen += sprintf(options + optlen, "%s ", *argv); 79 optlen += sprintf(options + optlen, "%s ", *argv);
75 } 80 }
76 return options; 81 return options;