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: 's avatarChristian Brauner <christian.brauner@ubuntu.com>
parent 2ce89d7f
...@@ -160,7 +160,7 @@ typedef struct lxc_attach_options_t { ...@@ -160,7 +160,7 @@ typedef struct lxc_attach_options_t {
{ \ { \
.attach_flags = LXC_ATTACH_DEFAULT, \ .attach_flags = LXC_ATTACH_DEFAULT, \
.namespaces = -1, \ .namespaces = -1, \
.personality = 0xffffffff, \ .personality = -1, \
.initial_cwd = NULL, \ .initial_cwd = NULL, \
.uid = (uid_t)-1, \ .uid = (uid_t)-1, \
.gid = (gid_t)-1, \ .gid = (gid_t)-1, \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment