Fix default_password_lifetime message typo

Closes 
This commit is contained in:
Robert Bindar 2019-02-24 21:00:36 +02:00 committed by Sergei Golubchik
parent d9f392848a
commit 2c08436959
4 changed files with 4 additions and 4 deletions

View file

@ -192,7 +192,7 @@ The following specify which files/extra groups are read (specified before remain
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
changed every N days. This behavior can be overridden
using the password expiration options in ALTER USER.
--default-regex-flags=name
Default flags for the regex library. Any combination of:

View file

@ -719,7 +719,7 @@ GLOBAL_VALUE_ORIGIN COMPILE-TIME
DEFAULT_VALUE 0
VARIABLE_SCOPE GLOBAL
VARIABLE_TYPE INT UNSIGNED
VARIABLE_COMMENT 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 ALTER USER.
VARIABLE_COMMENT 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 overridden using the password expiration options in ALTER USER.
NUMERIC_MIN_VALUE 0
NUMERIC_MAX_VALUE 4294967295
NUMERIC_BLOCK_SIZE 1

View file

@ -733,7 +733,7 @@ GLOBAL_VALUE_ORIGIN COMPILE-TIME
DEFAULT_VALUE 0
VARIABLE_SCOPE GLOBAL
VARIABLE_TYPE INT UNSIGNED
VARIABLE_COMMENT 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 ALTER USER.
VARIABLE_COMMENT 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 overridden using the password expiration options in ALTER USER.
NUMERIC_MIN_VALUE 0
NUMERIC_MAX_VALUE 4294967295
NUMERIC_BLOCK_SIZE 1

View file

@ -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));