Fix argv
This commit is contained in:
parent
a4fc5df066
commit
5c1d459b67
|
@ -1160,7 +1160,7 @@ lxc_run_command(VALUE self, VALUE rb_command)
|
||||||
lxc_attach_command_t cmd;
|
lxc_attach_command_t cmd;
|
||||||
VALUE rb_program;
|
VALUE rb_program;
|
||||||
|
|
||||||
rb_program = rb_ary_shift(rb_command);
|
rb_program = rb_ary_entry(rb_command, 0);
|
||||||
cmd.program = StringValuePtr(rb_program);
|
cmd.program = StringValuePtr(rb_program);
|
||||||
cmd.argv = ruby_to_c_string_array(rb_command);
|
cmd.argv = ruby_to_c_string_array(rb_command);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue