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:
@ -111,9 +111,9 @@ int Instance_options::fill_log_options()
|
||||
const char *default_suffix;
|
||||
} logs_st[]=
|
||||
{
|
||||
{"--log-error", 11, &(logs[LOG_ERROR]), ".err"},
|
||||
{"--log", 5, &(logs[LOG_GENERAL]), ".log"},
|
||||
{"--log-slow-queries", 18, &(logs[LOG_SLOW]), "-slow.log"},
|
||||
{"--log-error", 11, &(logs[IM_LOG_ERROR]), ".err"},
|
||||
{"--log", 5, &(logs[IM_LOG_GENERAL]), ".log"},
|
||||
{"--log-slow-queries", 18, &(logs[IM_LOG_SLOW]), "-slow.log"},
|
||||
{NULL, 0, NULL, NULL}
|
||||
};
|
||||
struct log_files_st *log_files;
|
||||
|
Reference in New Issue
Block a user