From b00456d2f0ebb0042b4a942a2fdab4c1b4494cfb Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Fri, 8 Mar 2013 11:43:17 -0800 Subject: [PATCH] namespace.h: Fix typo: s/CLONE_NEWSNS/CLONE_NEWNS/ This typo causes namespace.h to always unconditionally define CLONE_NEWNS rather than using the system definition. Bug present since the initial version of unshare in commit 4205f1fda1ac32046125a2e0f3937b666186bfab. Signed-off-by: Josh Triplett Signed-off-by: Anton Cherkashyn --- include/namespace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/namespace.h b/include/namespace.h index 3a219ceba0..9d58f13a51 100644 --- a/include/namespace.h +++ b/include/namespace.h @@ -4,7 +4,7 @@ # include -# ifndef CLONE_NEWSNS +# ifndef CLONE_NEWNS # define CLONE_NEWNS 0x00020000 # endif # ifndef CLONE_NEWUTS -- 2.47.2