diff options
author | adam- <adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-08-04 16:37:02 +0000 |
---|---|---|
committer | adam- <adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-08-04 16:37:02 +0000 |
commit | 98010656836260c979917eba59f50080b4cbfb95 (patch) | |
tree | b69666b88e7f33fe9db01b442d3af01e4e8b272d /src/bots.cpp | |
parent | ce664a160b1c1d4c75de5ba1867c96a0698326fd (diff) |
Fixed two typos in bots.cpp that could cause crashes
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2405 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/bots.cpp')
-rw-r--r-- | src/bots.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bots.cpp b/src/bots.cpp index a5184a847..a6ef20e37 100644 --- a/src/bots.cpp +++ b/src/bots.cpp @@ -26,7 +26,7 @@ BotInfo::BotInfo(const char *nnick) this->flags |= BI_CHANSERV; else if (s_BotServ && !stricmp(s_BotServ, nnick)) this->flags |= BI_BOTSERV; - else if (s_HostServ && !stricmp(s_BotServ, nnick)) + else if (s_HostServ && !stricmp(s_HostServ, nnick)) this->flags |= BI_HOSTSERV; else if (s_OperServ && !stricmp(s_OperServ, nnick)) this->flags |= BI_OPERSERV; @@ -55,7 +55,7 @@ BotInfo::BotInfo(const char *nnick, const char *nuser, const char *nhost, const this->flags |= BI_CHANSERV; else if (s_BotServ && !stricmp(s_BotServ, nnick)) this->flags |= BI_BOTSERV; - else if (s_HostServ && !stricmp(s_BotServ, nnick)) + else if (s_HostServ && !stricmp(s_HostServ, nnick)) this->flags |= BI_HOSTSERV; else if (s_OperServ && !stricmp(s_OperServ, nnick)) this->flags |= BI_OPERSERV; |