From: Zbigniew Jędrzejewski-Szmek Date: Mon, 27 Nov 2017 22:05:19 +0000 (+0000) Subject: pid1: improve syntax in error message X-Git-Tag: v236~102^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ba77dac291b788c27405a3b765072c3da339d57e;p=thirdparty%2Fsystemd.git pid1: improve syntax in error message --- diff --git a/src/core/load-fragment.c b/src/core/load-fragment.c index 42dcaea4e15..ac58ce8a14b 100644 --- a/src/core/load-fragment.c +++ b/src/core/load-fragment.c @@ -2904,7 +2904,7 @@ static int syscall_filter_parse_one( set = syscall_filter_set_find(t); if (!set) { if (warn) - log_syntax(unit, LOG_WARNING, filename, line, 0, "Don't know system call group, ignoring: %s", t); + log_syntax(unit, LOG_WARNING, filename, line, 0, "Unknown system call group, ignoring: %s", t); return 0; } @@ -2924,7 +2924,7 @@ static int syscall_filter_parse_one( } /* If we previously wanted to forbid a syscall and now - * we want to allow it, then remove it from the list + * we want to allow it, then remove it from the list. */ if (!invert == c->syscall_whitelist) { r = hashmap_put(c->syscall_filter, INT_TO_PTR(id + 1), INT_TO_PTR(errno_num));