1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 19:14:47 +02:00

Fixed reintroducing our clients if we disconnect and reconnect to the uplink

This commit is contained in:
Adam
2011-08-02 22:39:14 -04:00
parent 09f5591aba
commit 42f954ff7d
4 changed files with 3 additions and 7 deletions
+1 -1
View File
@@ -1403,7 +1403,7 @@ log
* chanserv/saset/peace chanserv/saset/persist chanserv/saset/private
* chanserv/saset/secure chanserv/saset/securefounder chanserv/saset/secureops
* chanserv/saset/signkick chanserv/saset/successor chanserv/saset/topiclock
* chanserv/saset/url chanserv/saset/xop chanserv/saset/noexpire
* chanserv/saset/url chanserv/saset/noexpire
*
* memoserv/sendall memoserv/staff
*
+1 -1
View File
@@ -420,7 +420,7 @@ class BahamutIRCdMessage : public IRCdMessage
ChannelMode *cm = ModeManager::FindChannelModeByChar(ch);
if (!cm)
{
Log() << "Receeved unknown mode prefix " << cm << " in SJOIN string";
Log() << "Received unknown mode prefix " << cm << " in SJOIN string";
continue;
}
+1 -1
View File
@@ -389,7 +389,7 @@ class InspircdIRCdMessage : public IRCdMessage
ChannelMode *cm = ModeManager::FindChannelModeByChar(buf[0]);
if (!cm)
{
Log() << "Receeved unknown mode prefix " << buf[0] << " in FJOIN string";
Log() << "Received unknown mode prefix " << buf[0] << " in FJOIN string";
buf.erase(buf.begin());
continue;
}
-4
View File
@@ -129,10 +129,6 @@ class UplinkSocket : public ConnectionSocket
/* Don't use quitmsg here, it may contain information you don't want people to see */
ircdproto->SendQuit(bi, "Shutting down");
/* Erase bots from the user list so they don't get nuked later on */
UserListByNick.erase(bi->nick);
if (!bi->GetUID().empty())
UserListByUID.erase(bi->GetUID());
}
/* Clear all of our users, but not our bots */