From c18d201808e70949b45fe206d9c29efb8107a152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 16 May 2015 18:21:01 -0400 Subject: [PATCH] load-fragment: put quotes around iffy rvalue --- src/core/load-fragment.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/load-fragment.c b/src/core/load-fragment.c index 5fa476c9f0..e1cd72fe98 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; }