From: Christian Brauner Date: Tue, 4 May 2021 13:43:38 +0000 (+0200) Subject: attach_options: unbreak header X-Git-Tag: lxc-5.0.0~178^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7fd384d11bb868479cbeeb9ade28edffe1d49d04;p=thirdparty%2Flxc.git 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 --- 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, \