|
@@ -2788,7 +2788,7 @@ static void yyerror_at(struct cfg_pos* p, char* format, ...)
|
|
|
vsnprintf(s, sizeof(s), format, ap);
|
|
|
va_end(ap);
|
|
|
if (p->e_line!=p->s_line)
|
|
|
- LOG(L_CRIT, "parse error in config file, from line %d, column %d to line %d, column %d): %s\n",
|
|
|
+ LOG(L_CRIT, "parse error in config file, from line %d, column %d to line %d, column %d: %s\n",
|
|
|
p->s_line, p->s_col, p->e_line, p->e_col, s);
|
|
|
else if (p->s_col!=p->e_col)
|
|
|
LOG(L_CRIT, "parse error in config file, line %d, column %d-%d: %s\n",
|