load-fragment: put quotes around iffy rvalue

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2015-05-16 18:21:01 -04:00
parent 4652c56c59
commit c18d201808
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}