From: Christian Brauner Date: Sat, 26 May 2018 10:53:12 +0000 (+0200) Subject: conf: reshuffle mount members X-Git-Tag: lxc-3.1.0~285^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=448d7b0c0f14bf342b71dcf95e2a4b5369743905;p=thirdparty%2Flxc.git conf: reshuffle mount members Signed-off-by: Christian Brauner --- diff --git a/src/lxc/conf.h b/src/lxc/conf.h index 8dfc0dc96..74a55699b 100644 --- a/src/lxc/conf.h +++ b/src/lxc/conf.h @@ -214,7 +214,6 @@ struct lxc_state_client { struct lxc_conf { /* Pointer to the name of the container. Do not free! */ const char *name; - char *fstab; unsigned int tty; unsigned int pts; bool is_execute; @@ -244,8 +243,13 @@ struct lxc_conf { }; struct lxc_list network; - int auto_mounts; - struct lxc_list mount_list; + + struct { + char *fstab; + int auto_mounts; + struct lxc_list mount_list; + }; + struct lxc_list caps; struct lxc_list keepcaps; struct lxc_tty_info ttys;