summaryrefslogtreecommitdiff
path: root/plugin/simple_password_check/simple_password_check.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/simple_password_check/simple_password_check.c')
-rw-r--r--plugin/simple_password_check/simple_password_check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/simple_password_check/simple_password_check.c b/plugin/simple_password_check/simple_password_check.c
index 8b460c5ed9d..977a7487b78 100644
--- a/plugin/simple_password_check/simple_password_check.c
+++ b/plugin/simple_password_check/simple_password_check.c
@@ -25,7 +25,7 @@ static unsigned min_length, min_digits, min_letters, min_others;
static int validate(MYSQL_LEX_STRING *username, MYSQL_LEX_STRING *password)
{
- unsigned digits=0 , uppers=0 , lowers=0, others=0, length= password->length;
+ unsigned digits=0 , uppers=0 , lowers=0, others=0, length= (unsigned)password->length;
const char *ptr= password->str, *end= ptr + length;
if (strncmp(password->str, username->str, length) == 0)