Browse Source

- make config parse error stick out
Patch from Bogdan Pintea <[email protected]>.
Closes: SER-337

Andrei Pelinescu-Onciul 17 năm trước cách đây
mục cha
commit
5d3c5f8a05
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      cfg.y

+ 1 - 1
cfg.y

@@ -2173,7 +2173,7 @@ static void warn(char* s)
 
 static void yyerror(char* s)
 {
-	LOG(L_CRIT, "parse error (%d,%d-%d): %s\n", line, startcolumn,
+	LOG(L_CRIT, "*** PARSE ERROR *** (%d,%d-%d): %s\n", line, startcolumn,
 			column, s);
 	cfg_errors++;
 }