From: Zbigniew Jędrzejewski-Szmek Date: Sat, 16 May 2015 22:21:01 +0000 (-0400) Subject: load-fragment: put quotes around iffy rvalue X-Git-Tag: v220~100 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c18d201808e70949b45fe206d9c29efb8107a152;p=thirdparty%2Fsystemd.git load-fragment: put quotes around iffy rvalue --- diff --git a/src/core/load-fragment.c b/src/core/load-fragment.c index 5fa476c9f01..e1cd72fe982 100644 --- a/src/core/load-fragment.c +++ b/src/core/load-fragment.c @@ -596,7 +596,8 @@ int config_parse_exec( /* skip special chars in the beginning */ if (l <= skip) { - log_syntax(unit, LOG_ERR, filename, line, EINVAL, "Empty path in command line, ignoring: %s", rvalue); + log_syntax(unit, LOG_ERR, filename, line, EINVAL, + "Empty path in command line, ignoring: \"%s\"", rvalue); r = 0; goto fail; }