Correctly handle --netns-only in pasta_start_ns()
--netns-only is supposed to make pasta use only a network namespace, not a user namespace. However, pasta_start_ns() has this backwards, and if --netns-only is specified it creates a user namespace but *not* a network namespace. Correct this. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
fc1be3d5ab
commit
d9f889a55a
1 changed files with 2 additions and 2 deletions
4
pasta.c
4
pasta.c
|
@ -244,8 +244,8 @@ void pasta_start_ns(struct ctx *c, int argc, char *argv[])
|
|||
|
||||
pasta_child_pid = clone(pasta_setup_ns,
|
||||
ns_fn_stack + sizeof(ns_fn_stack) / 2,
|
||||
(c->netns_only ? 0 : CLONE_NEWNET) |
|
||||
CLONE_NEWIPC | CLONE_NEWPID | CLONE_NEWUSER |
|
||||
(c->netns_only ? 0 : CLONE_NEWUSER) |
|
||||
CLONE_NEWIPC | CLONE_NEWPID | CLONE_NEWNET |
|
||||
CLONE_NEWUTS,
|
||||
(void *)&arg);
|
||||
|
||||
|
|
Loading…
Reference in a new issue