summaryrefslogtreecommitdiffstats
path: root/src/Protocol/Authenticator.cpp
diff options
context:
space:
mode:
authorpeterbell10 <peterbell10@live.co.uk>2018-07-22 23:35:58 +0200
committerGitHub <noreply@github.com>2018-07-22 23:35:58 +0200
commit7b431bed513db3318811698029304d81e5831ab3 (patch)
treea05eec7426d42f0d194f538292559e3da189c13d /src/Protocol/Authenticator.cpp
parentMake offline UUIDs consistent with vanilla. (#4178) (diff)
downloadcuberite-7b431bed513db3318811698029304d81e5831ab3.tar
cuberite-7b431bed513db3318811698029304d81e5831ab3.tar.gz
cuberite-7b431bed513db3318811698029304d81e5831ab3.tar.bz2
cuberite-7b431bed513db3318811698029304d81e5831ab3.tar.lz
cuberite-7b431bed513db3318811698029304d81e5831ab3.tar.xz
cuberite-7b431bed513db3318811698029304d81e5831ab3.tar.zst
cuberite-7b431bed513db3318811698029304d81e5831ab3.zip
Diffstat (limited to 'src/Protocol/Authenticator.cpp')
-rw-r--r--src/Protocol/Authenticator.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Protocol/Authenticator.cpp b/src/Protocol/Authenticator.cpp
index 445a3dff5..da4685635 100644
--- a/src/Protocol/Authenticator.cpp
+++ b/src/Protocol/Authenticator.cpp
@@ -77,7 +77,6 @@ void cAuthenticator::Authenticate(int a_ClientID, const AString & a_UserName, co
void cAuthenticator::Start(cSettingsRepositoryInterface & a_Settings)
{
ReadSettings(a_Settings);
- m_ShouldTerminate = false;
super::Start();
}
@@ -89,7 +88,7 @@ void cAuthenticator::Stop(void)
{
m_ShouldTerminate = true;
m_QueueNonempty.Set();
- Wait();
+ super::Stop();
}