summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864>2010-04-24 06:51:14 +0000
committerAdam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864>2010-04-24 06:51:14 +0000
commit757c7ad97341ffb65daeb14826024323daf1336d (patch)
treedd38b7f194ec9c66492aa774b80e735c3c740675 /src
parent531cba9251d2b7963f34047d5587678e3da076da (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/core/os_defcon.c4
-rw-r--r--src/users.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/os_defcon.c b/src/core/os_defcon.c
index a3c4c46fa..8ebdd33a2 100644
--- a/src/core/os_defcon.c
+++ b/src/core/os_defcon.c
@@ -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;
}
diff --git a/src/users.c b/src/users.c
index 2146f09a5..6a744406f 100644
--- a/src/users.c
+++ b/src/users.c
@@ -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;
}