feat/TS-5927-long-password-fix-cases

This commit is contained in:
dmchen 2025-02-13 10:14:02 +00:00
parent 80f60449e3
commit 70686226d8
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ static bool invalidPassword(const char* pPassword) {
static bool invalidStrongPassword(const char* pPassword) { static bool invalidStrongPassword(const char* pPassword) {
if (strcmp(pPassword, "taosdata") == 0) { if (strcmp(pPassword, "taosdata") == 0) {
return true; return false;
} }
bool charTypes[4] = {0}; bool charTypes[4] = {0};