From 96f306e6254270b88ba1df891aa192dfb1c90597 Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Tue, 9 Mar 2021 11:29:31 +0100 Subject: [PATCH] conf: add missing newline in lxc_mount_auto_mounts() Signed-off-by: Christian Brauner --- src/lxc/conf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 8254c42a9..9d0fba320 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -646,6 +646,7 @@ static int lxc_mount_auto_mounts(struct lxc_handler *handler, int flags) for (i = 0; default_mounts[i].match_mask; i++) { __do_free char *destination = NULL, *source = NULL; unsigned long mflags; + if ((flags & default_mounts[i].match_mask) != default_mounts[i].match_flag) continue; -- 2.47.2