From 757c7ad97341ffb65daeb14826024323daf1336d Mon Sep 17 00:00:00 2001 From: Adam- Date: Sat, 24 Apr 2010 06:51:14 +0000 Subject: [PATCH] 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 --- src/core/os_defcon.c | 4 ++-- src/users.c | 2 +- 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; }