1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +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

@ -5095,7 +5095,7 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
}
/* Initiates DEBUG - but no debugging here ! */
void option_error_reporter( enum LOGLEVEL level, const char *format, ... )
void option_error_reporter( enum loglevel level, const char *format, ... )
{
va_list args;
va_start( args, format );