mirror of
https://github.com/znc/znc.git
synced 2026-05-06 05:22:26 +02:00
Utils: don't capitalize password
This commit is contained in:
@@ -156,8 +156,8 @@ CString CUtils::GetSaltedHashPass(CString& sSalt) {
|
||||
sSalt = GetSalt();
|
||||
|
||||
while (true) {
|
||||
CString pass1 = CUtils::GetPass("Enter Password");
|
||||
CString pass2 = CUtils::GetPass("Confirm Password");
|
||||
CString pass1 = CUtils::GetPass("Enter password");
|
||||
CString pass2 = CUtils::GetPass("Confirm password");
|
||||
|
||||
if (!pass1.Equals(pass2, true)) {
|
||||
CUtils::PrintError("The supplied passwords did not match");
|
||||
|
||||
Reference in New Issue
Block a user