Browse Source

db_mysql: fixed driver error counter named

Changed the name from "Mysql driver erros" to "driver_errors"
(spaces in the name, while legal, would make life harder).
Andrei Pelinescu-Onciul 15 years ago
parent
commit
e7a7c4e0a8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/db_mysql/mysql_mod.c

+ 1 - 1
modules/db_mysql/mysql_mod.c

@@ -59,7 +59,7 @@ unsigned long my_client_ver = 0;
 
 
 struct mysql_counters_h mysql_cnts_h;
 struct mysql_counters_h mysql_cnts_h;
 counter_def_t mysql_cnt_defs[] =  {
 counter_def_t mysql_cnt_defs[] =  {
-	{&mysql_cnts_h.driver_err, "Mysql driver erros", 0, 0, 0,
+	{&mysql_cnts_h.driver_err, "driver_errors", 0, 0, 0,
 		"incremented each time a Mysql error happened because the server/connection has failed."},
 		"incremented each time a Mysql error happened because the server/connection has failed."},
 	{0, 0, 0, 0, 0, 0 }
 	{0, 0, 0, 0, 0, 0 }
 };
 };