diff options
author | Monty <monty@mariadb.org> | 2020-03-31 14:10:45 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2020-04-19 17:33:51 +0300 |
commit | 7866b723048d1d0f4a202d5a1e5475420b1dda64 (patch) | |
tree | d792035a5e515f30c3b13ad53af102bbee324926 /sql | |
parent | e3130d22e1fbd9060fe3009a2d3b3152932efe97 (diff) | |
download | mariadb-git-7866b723048d1d0f4a202d5a1e5475420b1dda64.tar.gz |
Updated client and server to use new binary names in --debug traces
Diffstat (limited to 'sql')
-rw-r--r-- | sql/mysqld.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index 0b714cc346c..97dfca47beb 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -7881,8 +7881,8 @@ static int mysql_init_variables(void) /* Variables that depends on compile options */ #ifndef DBUG_OFF - default_dbug_option=IF_WIN("d:t:i:O,\\mysqld.trace", - "d:t:i:o,/tmp/mysqld.trace"); + default_dbug_option=IF_WIN("d:t:i:O,\\mariadbd.trace", + "d:t:i:o,/tmp/mariadbd.trace"); current_dbug_option= default_dbug_option; #endif opt_error_log= IF_WIN(1,0); |