From: Josh Triplett Date: Fri, 8 Mar 2013 19:43:17 +0000 (-0800) Subject: namespace.h: Fix typo: s/CLONE_NEWSNS/CLONE_NEWNS/ X-Git-Tag: v2.23-rc1~60 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b00456d2f0ebb0042b4a942a2fdab4c1b4494cfb;p=thirdparty%2Futil-linux.git 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 --- 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