Selaa lähdekoodia

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

Andrei Pelinescu-Onciul 17 vuotta sitten
vanhempi
commit
5d3c5f8a05
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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++;
 }