fix(Core/DB) - Correct the max length of a username to 17 characters (#21183)

This commit is contained in:
FlyingArowana 2025-01-19 07:18:56 +00:00 committed by GitHub
parent 20ad1c68ec
commit eb37cd8d3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 1 deletions

View file

@ -32,7 +32,7 @@ enum AccountOpResult
AOR_DB_INTERNAL_ERROR
};
#define MAX_ACCOUNT_STR 20
#define MAX_ACCOUNT_STR 17
#define MAX_PASS_STR 16
#define MAX_EMAIL_STR 255