Commit 2c084369 authored by Robert Bindar's avatar Robert Bindar Committed by Sergei Golubchik

Fix default_password_lifetime message typo

Closes #1212
parent d9f39284
...@@ -192,7 +192,7 @@ The following specify which files/extra groups are read (specified before remain ...@@ -192,7 +192,7 @@ The following specify which files/extra groups are read (specified before remain
This defines the global password expiration policy. 0 This defines the global password expiration policy. 0
means automatic password expiration is disabled. If the means automatic password expiration is disabled. If the
value is a positive integer N, the passwords must be 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. using the password expiration options in ALTER USER.
--default-regex-flags=name --default-regex-flags=name
Default flags for the regex library. Any combination of: Default flags for the regex library. Any combination of:
......
...@@ -719,7 +719,7 @@ GLOBAL_VALUE_ORIGIN COMPILE-TIME ...@@ -719,7 +719,7 @@ GLOBAL_VALUE_ORIGIN COMPILE-TIME
DEFAULT_VALUE 0 DEFAULT_VALUE 0
VARIABLE_SCOPE GLOBAL VARIABLE_SCOPE GLOBAL
VARIABLE_TYPE INT UNSIGNED 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_MIN_VALUE 0
NUMERIC_MAX_VALUE 4294967295 NUMERIC_MAX_VALUE 4294967295
NUMERIC_BLOCK_SIZE 1 NUMERIC_BLOCK_SIZE 1
......
...@@ -733,7 +733,7 @@ GLOBAL_VALUE_ORIGIN COMPILE-TIME ...@@ -733,7 +733,7 @@ GLOBAL_VALUE_ORIGIN COMPILE-TIME
DEFAULT_VALUE 0 DEFAULT_VALUE 0
VARIABLE_SCOPE GLOBAL VARIABLE_SCOPE GLOBAL
VARIABLE_TYPE INT UNSIGNED 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_MIN_VALUE 0
NUMERIC_MAX_VALUE 4294967295 NUMERIC_MAX_VALUE 4294967295
NUMERIC_BLOCK_SIZE 1 NUMERIC_BLOCK_SIZE 1
......
...@@ -1570,7 +1570,7 @@ static Sys_var_uint Sys_default_password_lifetime( ...@@ -1570,7 +1570,7 @@ static Sys_var_uint Sys_default_password_lifetime(
"This defines the global password expiration policy. 0 means " "This defines the global password expiration policy. 0 means "
"automatic password expiration is disabled. If the value is a " "automatic password expiration is disabled. If the value is a "
"positive integer N, the passwords must be changed every N days. This " "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.", "ALTER USER.",
GLOBAL_VAR(default_password_lifetime), CMD_LINE(REQUIRED_ARG), GLOBAL_VAR(default_password_lifetime), CMD_LINE(REQUIRED_ARG),
VALID_RANGE(0, UINT_MAX), DEFAULT(0), BLOCK_SIZE(1)); VALID_RANGE(0, UINT_MAX), DEFAULT(0), BLOCK_SIZE(1));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment