From: Christian Brauner Date: Fri, 3 Sep 2021 08:25:01 +0000 (+0200) Subject: conf: fix array initalization X-Git-Tag: lxc-5.0.0~92^2~51 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=622d344d178fbe41a0564c154aa90ab2fe7dabd3;p=thirdparty%2Flxc.git conf: fix array initalization Signed-off-by: Christian Brauner --- diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 8d2be1301..c11306dbc 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -185,7 +185,7 @@ static struct mount_opt propagation_opt[] = { { "rshared", 0, true, MS_SHARED, MS_SHARED | MS_REC }, { "rslave", 0, true, MS_SLAVE, MS_SLAVE | MS_REC }, { "runbindable", 0, true, MS_UNBINDABLE, MS_UNBINDABLE | MS_REC }, - { NULL, 0, 0 }, + { NULL, 0, false, 0, 0 }, }; static struct caps_opt caps_opt[] = {