From 2db32618fe8e7305aa6f25db8b1d4a00aaafa264 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 25 Oct 2021 16:42:19 +0900 Subject: [PATCH] nspawn: fix build when SECCOMP is disabled Follow-up for 20e458ae3c3b386e2b720bbd3c37d95781e69ae7. --- src/nspawn/nspawn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 2804686f79a..ea68dc248aa 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -3410,7 +3410,7 @@ static int inner_child( if (r < 0) log_debug_errno(r, "Failed to install sync() suppression seccomp filter, ignoring: %m"); #else - log_debug("systemd is built without SECCOMP support. Ignoring --suppress-sync= command line option and SuppressSync= setting.") + log_debug("systemd is built without SECCOMP support. Ignoring --suppress-sync= command line option and SuppressSync= setting."); #endif } -- 2.47.3