diff options
Diffstat (limited to 'modules/commands')
-rw-r--r-- | modules/commands/ns_register.cpp | 2 | ||||
-rw-r--r-- | modules/commands/ns_resetpass.cpp | 2 | ||||
-rw-r--r-- | modules/commands/ns_set_email.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/commands/ns_register.cpp b/modules/commands/ns_register.cpp index 3010c0eb4..341397c67 100644 --- a/modules/commands/ns_register.cpp +++ b/modules/commands/ns_register.cpp @@ -337,7 +337,7 @@ static bool SendRegmail(User *u, NickAlias *na, BotInfo *bi) }; int idx, min = 1, max = 62; for (idx = 0; idx < 9; ++idx) - codebuf += chars[1 + static_cast<int>((static_cast<float>(max - min)) * getrandom16() / 65536.0) + min]; + codebuf += chars[1 + static_cast<int>((static_cast<float>(max - min)) * static_cast<uint16_t>(rand()) / 65536.0) + min]; na->nc->Extend("ns_register_passcode", new ExtensibleString(codebuf)); } else diff --git a/modules/commands/ns_resetpass.cpp b/modules/commands/ns_resetpass.cpp index ab357f484..f3aa47630 100644 --- a/modules/commands/ns_resetpass.cpp +++ b/modules/commands/ns_resetpass.cpp @@ -132,7 +132,7 @@ static bool SendResetEmail(User *u, NickAlias *na, BotInfo *bi) Anope::string passcode; int idx; for (idx = 0; idx < 20; ++idx) - passcode += chars[1 + static_cast<int>((static_cast<float>(max - min)) * getrandom16() / 65536.0) + min]; + passcode += chars[1 + static_cast<int>((static_cast<float>(max - min)) * static_cast<uint16_t>(rand()) / 65536.0) + min]; Anope::string subject = translate(na->nc, Config->MailResetSubject.c_str()); Anope::string message = translate(na->nc, Config->MailResetMessage.c_str()); diff --git a/modules/commands/ns_set_email.cpp b/modules/commands/ns_set_email.cpp index 6a4ece4ca..8ce71165e 100644 --- a/modules/commands/ns_set_email.cpp +++ b/modules/commands/ns_set_email.cpp @@ -25,7 +25,7 @@ static bool SendConfirmMail(User *u, BotInfo *bi) int idx, min = 1, max = 62; Anope::string code; for (idx = 0; idx < 9; ++idx) - code += chars[1 + static_cast<int>((static_cast<float>(max - min)) * getrandom16() / 65536.0) + min]; + code += chars[1 + static_cast<int>((static_cast<float>(max - min)) * static_cast<uint16_t>(rand()) / 65536.0) + min]; u->Account()->Extend("ns_set_email_passcode", new ExtensibleString(code)); Anope::string subject = Config->MailEmailchangeSubject; |