From 7fd384d11bb868479cbeeb9ade28edffe1d49d04 Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Tue, 4 May 2021 15:43:38 +0200 Subject: [PATCH] attach_options: unbreak header In a moment of idioticity I switch -1 with 0xffffffff in the header definition but we use -1 to autodetect. Signed-off-by: Christian Brauner --- src/lxc/attach_options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/attach_options.h b/src/lxc/attach_options.h index 3a58d571c..b8e786023 100644 --- a/src/lxc/attach_options.h +++ b/src/lxc/attach_options.h @@ -160,7 +160,7 @@ typedef struct lxc_attach_options_t { { \ .attach_flags = LXC_ATTACH_DEFAULT, \ .namespaces = -1, \ - .personality = 0xffffffff, \ + .personality = -1, \ .initial_cwd = NULL, \ .uid = (uid_t)-1, \ .gid = (gid_t)-1, \ -- 2.47.2