diff options
author | Robert Bindar <robert@mariadb.org> | 2019-02-24 21:00:36 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2019-05-18 20:33:21 +0200 |
commit | 2c08436959dc0b0a6a4a58f18114dd9987151396 (patch) | |
tree | 6820cfbc5f5bc10dbf9c093a3e2b0cb17ee98d0e /sql/sys_vars.cc | |
parent | d9f392848afc72fdf12c8f6c525e93435c683283 (diff) | |
download | mariadb-git-2c08436959dc0b0a6a4a58f18114dd9987151396.tar.gz |
Fix default_password_lifetime message typo
Closes #1212
Diffstat (limited to 'sql/sys_vars.cc')
-rw-r--r-- | sql/sys_vars.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sys_vars.cc b/sql/sys_vars.cc index 2e92838ad3a..3791229dc6b 100644 --- a/sql/sys_vars.cc +++ b/sql/sys_vars.cc @@ -1570,7 +1570,7 @@ static Sys_var_uint Sys_default_password_lifetime( "This defines the global password expiration policy. 0 means " "automatic password expiration is disabled. If the value is a " "positive integer N, the passwords must be changed every N days. This " - "behavior can be overriden using the password expiration options in " + "behavior can be overridden using the password expiration options in " "ALTER USER.", GLOBAL_VAR(default_password_lifetime), CMD_LINE(REQUIRED_ARG), VALID_RANGE(0, UINT_MAX), DEFAULT(0), BLOCK_SIZE(1)); |