summaryrefslogtreecommitdiff
path: root/src/clientiface.cpp
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2022-04-27 19:32:51 +0200
committersfan5 <sfan5@live.de>2022-05-14 18:33:42 +0200
commita55982e7f01c83d5289b8018754963299b9e9484 (patch)
tree80e412bcc33ec2a7c0252601c8e32ede523e815f /src/clientiface.cpp
parent1ac378063e37e5b1485438e5321252b42471ba79 (diff)
downloadminetest-a55982e7f01c83d5289b8018754963299b9e9484.tar.gz
minetest-a55982e7f01c83d5289b8018754963299b9e9484.tar.bz2
minetest-a55982e7f01c83d5289b8018754963299b9e9484.zip
Fix password changing getting stuck if wrong password is entered once
Diffstat (limited to 'src/clientiface.cpp')
-rw-r--r--src/clientiface.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/clientiface.cpp b/src/clientiface.cpp
index a1c3e1187..a4bfb8242 100644
--- a/src/clientiface.cpp
+++ b/src/clientiface.cpp
@@ -596,6 +596,15 @@ void RemoteClient::notifyEvent(ClientStateEvent event)
}
}
+void RemoteClient::resetChosenMech()
+{
+ if (chosen_mech == AUTH_MECHANISM_SRP) {
+ srp_verifier_delete((SRPVerifier *) auth_data);
+ auth_data = nullptr;
+ }
+ chosen_mech = AUTH_MECHANISM_NONE;
+}
+
u64 RemoteClient::uptime() const
{
return porting::getTimeS() - m_connection_time;