From 9c6440a4f7565e7e8ce0a7fcd1a964b26e9b17f4 Mon Sep 17 00:00:00 2001 From: Sapan Bhatia Date: Thu, 14 Mar 2013 14:10:10 -0400 Subject: [PATCH] Without this, scp, ssh with bash arguments etc. does not work --- vsh.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vsh.c b/vsh.c index 8780b24..03e7566 100644 --- a/vsh.c +++ b/vsh.c @@ -45,7 +45,7 @@ char **extend_argv(int argc, char **argv, int num_extra_args) { return argv2; } -#define NUM_LXCSU_EXEC_ARGS 1 +#define NUM_LXCSU_EXEC_ARGS 2 int main(int argc, char **argv, char **envp) { @@ -70,6 +70,7 @@ int main(int argc, char **argv, char **envp) snprintf(slice_id_str, 255, "%u", slice_xid); argv2[0] = strdup(LXCSU_PATH); argv2[1] = strdup(slice_name); + argv2[2] = strdup("--"); if (setuid(geteuid())) goto out_exception; -- 2.43.0