conf-parser: use SYNTHETIC_ERRNO() at one more place

This commit is contained in:
Yu Watanabe 2020-09-10 14:13:56 +09:00
parent c56566530b
commit 3de39a1ad4
1 changed files with 2 additions and 4 deletions

View File

@ -183,10 +183,8 @@ static int parse_line(
k = strlen(l);
assert(k > 0);
if (l[k-1] != ']') {
log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid section header '%s'", l);
return -EBADMSG;
}
if (l[k-1] != ']')
return log_syntax(unit, LOG_ERR, filename, line, SYNTHETIC_ERRNO(EBADMSG), "Invalid section header '%s'", l);
n = strndup(l+1, k-2);
if (!n)