mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
commands.cc, parse.h, parse.cc, instance_options.cc:
Prefix enum symbols LOG_* with IM_, not to clash with system headers
This commit is contained in:
@ -262,13 +262,13 @@ Command *parse_command(Command_factory *factory, const char *text)
|
||||
/* define a log type */
|
||||
switch (tok3) {
|
||||
case TOK_ERROR:
|
||||
log_type= LOG_ERROR;
|
||||
log_type= IM_LOG_ERROR;
|
||||
break;
|
||||
case TOK_GENERAL:
|
||||
log_type= LOG_GENERAL;
|
||||
log_type= IM_LOG_GENERAL;
|
||||
break;
|
||||
case TOK_SLOW:
|
||||
log_type= LOG_SLOW;
|
||||
log_type= IM_LOG_SLOW;
|
||||
break;
|
||||
default:
|
||||
goto syntax_error;
|
||||
|
Reference in New Issue
Block a user