diff options
author | guilhem@mysql.com <> | 2003-05-13 23:03:00 +0200 |
---|---|---|
committer | guilhem@mysql.com <> | 2003-05-13 23:03:00 +0200 |
commit | 05c8973671b6d90acf62a29deda12ad2d87c20ba (patch) | |
tree | a3a6c15810282830ff8697098ee6125753f8618a /sql | |
parent | aa9bc9d0a031cd7bff7ffcff54049717787441f8 (diff) | |
download | mariadb-git-05c8973671b6d90acf62a29deda12ad2d87c20ba.tar.gz |
Fix for bug 343 : we require only REPLICATION CLIENT for
SHOW SLAVE STATUS and SHOW MASTER STATUS, because this is what
the manual states. We still accept SUPER.
Diffstat (limited to 'sql')
-rw-r--r-- | sql/sql_parse.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index 73983bc03b1..fc30bb45ea6 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -1475,7 +1475,9 @@ mysql_execute_command(void) } case SQLCOM_SHOW_SLAVE_STAT: { - if (check_global_access(thd, SUPER_ACL)) + /* Accept two privileges */ + if (check_global_access(thd, SUPER_ACL) && + check_global_access(thd, REPL_CLIENT_ACL)) goto error; LOCK_ACTIVE_MI; res = show_master_info(thd,active_mi); @@ -1484,7 +1486,9 @@ mysql_execute_command(void) } case SQLCOM_SHOW_MASTER_STAT: { - if (check_global_access(thd, SUPER_ACL)) + /* Accept two privileges */ + if (check_global_access(thd, SUPER_ACL) && + check_global_access(thd, REPL_CLIENT_ACL)) goto error; res = show_binlog_info(thd); break; |