diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-11-17 04:04:24 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-11-17 04:04:24 +0000 |
commit | e10fe1cd767cf479837eecc1e1b26615d63ea5ac (patch) | |
tree | d1fbb79219d5598cd2370eb54f8a75aa5b9f25ef /src/botserv.c | |
parent | 88330c07adc5bb3b085cf6ede1d30c0c48afcfb6 (diff) |
Removed some unnecessary casts, used C++-style casts over C-style casts, fixed a few warnings (one possibly fatal one).
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2655 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/botserv.c')
-rw-r--r-- | src/botserv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/botserv.c b/src/botserv.c index e56e75d40..7c1657187 100644 --- a/src/botserv.c +++ b/src/botserv.c @@ -348,7 +348,7 @@ void botchanmsgs(User * u, ChannelInfo * ci, char *buf) if (BSGentleBWReason) bot_kick(ci, u, BOT_REASON_BADWORD_GENTLE); else - bot_kick(ci, u, BOT_REASON_BADWORD, bw->word); + bot_kick(ci, u, BOT_REASON_BADWORD, bw->word.c_str()); /* free the normalized buffer before return (#850) */ delete [] nbuf; |