1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Bug #4466 Nothing in .err when mysql service ends because of malformed my.ini options

mysqld.cc:
  Changed LOGLEVEL enum to loglevel
mysql_priv.h, log.cc:
  Changed LOGLEVEL to loglevel.  Removed startup_ from some of the DBUG_ENTER macros. Removed the print_msg_to_log function as it was unused.
my_getopt.c, my_getopt.h:
  Renamed LOGLEVEL to loglevel to match coding standards
This commit is contained in:
rburnett@build.mysql.com
2004-08-19 17:56:32 +02:00
parent a22cdab9e9
commit eb04e6da07
5 changed files with 18 additions and 38 deletions

View File

@@ -56,7 +56,7 @@ char *disabled_my_option= (char*) "0";
my_bool my_getopt_print_errors= 1;
void default_reporter( enum LOGLEVEL level, const char *format, ... )
void default_reporter( enum loglevel level, const char *format, ... )
{
va_list args;
va_start( args, format );