1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 02:46:39 +02:00

Fixed some typos in log messages, found by Lethality

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2906 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Adam-
2010-04-24 06:51:14 +00:00
parent 531cba9251
commit 757c7ad973
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -375,7 +375,7 @@ void runDefCon()
{
if (Config.DefConChanModes[0] == '+' || Config.DefConChanModes[0] == '-')
{
Alog() << "DEFCON: setting " << Config.DefConChanModes << "on all chan's";
Alog() << "DEFCON: setting " << Config.DefConChanModes << " on all channels";
DefConModesSet = 1;
MassChannelModes(findbot(Config.s_OperServ), Config.DefConChanModes);
}
@@ -390,7 +390,7 @@ void runDefCon()
DefConModesSet = 0;
if ((newmodes = defconReverseModes(Config.DefConChanModes)))
{
Alog() << "DEFCON: setting " << newmodes << " on all chan's";
Alog() << "DEFCON: setting " << newmodes << " on all channels";
MassChannelModes(findbot(Config.s_OperServ), newmodes);
delete [] newmodes;
}
+1 -1
View File
@@ -793,7 +793,7 @@ User *do_nick(const char *source, const char *nick, const char *username, const
<< (ircd->nickvhost && vhost ? " => " : "")
<< (ircd->nickvhost && vhost ? vhost : "") << ") (" << logrealname << ") "
<< (ircd->nickip ? "[" : "") << (ircd->nickip ? ipbuf : "") << (ircd->nickip ? "]" : "")
<< "connected to the network (" << server << ").";
<< " connected to the network (" << server << ").";
delete [] logrealname;
}