aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--loginutils/suw32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loginutils/suw32.c b/loginutils/suw32.c
index 3500c08db..df6d07232 100644
--- a/loginutils/suw32.c
+++ b/loginutils/suw32.c
@@ -61,7 +61,7 @@ int suw32_main(int argc UNUSED_PARAM, char **argv)
61 xasprintf("--busybox ash -d \"%s\" -t \"BusyBox ash (Admin)\" ", cwd); 61 xasprintf("--busybox ash -d \"%s\" -t \"BusyBox ash (Admin)\" ", cwd);
62 if (opt_command) 62 if (opt_command)
63 info.lpParameters = 63 info.lpParameters =
64 xasprintf("%s -s -c \"%s\"", info.lpParameters, opt_command); 64 xasprintf("%s -s -c %s", info.lpParameters, quote_arg(opt_command));
65 /* info.lpDirectory = NULL; */ 65 /* info.lpDirectory = NULL; */
66 info.nShow = SW_SHOWNORMAL; 66 info.nShow = SW_SHOWNORMAL;
67 67