]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
conf: fix array initalization
authorChristian Brauner <christian.brauner@ubuntu.com>
Fri, 3 Sep 2021 08:25:01 +0000 (10:25 +0200)
committerChristian Brauner <christian.brauner@ubuntu.com>
Fri, 3 Sep 2021 11:01:41 +0000 (13:01 +0200)
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
src/lxc/conf.c

index 8d2be1301706517f4e76474997d908e0eba4f82b..c11306dbca14f847fc193ca12c735ecd28c93aa5 100644 (file)
@@ -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[] = {