diff options
author | unknown <serg@serg.mylan> | 2004-08-30 08:37:36 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-08-30 08:37:36 +0200 |
commit | d8f416a26c1c69b1a1a7130b0d31a7e92b825408 (patch) | |
tree | db8d212cff4061f9779c0ff43088eb2ebf01affa /sql/sql_acl.cc | |
parent | 82257f94f411b678da753b3ccb7e883621189eb1 (diff) | |
download | mariadb-git-d8f416a26c1c69b1a1a7130b0d31a7e92b825408.tar.gz |
bug in my_strnncoll_utf8 (and friends) fixed
cleanups
better, charset-dependent, ft_max_len_for_sort value
myisam/ftdefs.h:
better ft_max_len_for_sort value
myisam/mi_check.c:
better, charset-dependent, ft_max_len_for_sort value
myisam/myisamchk.c:
unused value from enum removed
myisam/sort.c:
cleanup
sql/mysql_priv.h:
cleanup
sql/mysqld.cc:
cleanup
sql/sql_acl.cc:
cleanup
sql/tztime.cc:
cleanup
strings/ctype-utf8.c:
bug in my_strnncoll_utf8 (and friends) fixed
Diffstat (limited to 'sql/sql_acl.cc')
-rw-r--r-- | sql/sql_acl.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_acl.cc b/sql/sql_acl.cc index fd3d27099ed..9c6853187f6 100644 --- a/sql/sql_acl.cc +++ b/sql/sql_acl.cc @@ -251,9 +251,9 @@ my_bool acl_init(THD *org_thd, bool dont_read_acl_tables) { global_system_variables.old_passwords= 1; pthread_mutex_unlock(&LOCK_global_system_variables); - sql_print_error("mysql.user table is not updated to new password format; " - "Disabling new password usage until " - "mysql_fix_privilege_tables is run"); + sql_print_warning("mysql.user table is not updated to new password format; " + "Disabling new password usage until " + "mysql_fix_privilege_tables is run"); } thd->variables.old_passwords= 1; } |