From: Christian Brauner Date: Tue, 9 Mar 2021 10:29:31 +0000 (+0100) Subject: conf: add missing newline in lxc_mount_auto_mounts() X-Git-Tag: lxc-5.0.0~260^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96f306e6254270b88ba1df891aa192dfb1c90597;p=thirdparty%2Flxc.git conf: add missing newline in lxc_mount_auto_mounts() Signed-off-by: Christian Brauner --- 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;