Start the connect user time in ParseConfig()

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@943 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2008-02-07 22:23:14 +00:00
parent 077b25e77d
commit c20f8427bb
+3 -2
View File
@@ -173,8 +173,6 @@ bool CZNC::HandleUserDeletion()
}
int CZNC::Loop() {
EnableConnectUser();
while (true) {
// Check for users that need to be deleted
if (HandleUserDeletion()) {
@@ -1245,6 +1243,9 @@ bool CZNC::ParseConfig(const CString& sConfig) {
return false;
}
// Make sure that users that want to connect do so
RestartConnectUser();
return true;
}