summaryrefslogtreecommitdiff
path: root/src/users.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:11 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:11 +0000
commit6fa5553b4ba46641b94025cfee7de07550823fdf (patch)
tree2ef8e76a7f2125819bc4055c7117bd12899d7292 /src/users.c
parentefb458a927ce9b0d3542c0fe6093c898f171f036 (diff)
Added cmd_notice() function to IRCDProtoNew class. (Replaces cmd_notice2)
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1229 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/users.c')
-rw-r--r--src/users.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.c b/src/users.c
index 1bb02a5f2..38fa5eee4 100644
--- a/src/users.c
+++ b/src/users.c
@@ -291,7 +291,7 @@ void User::SendMessage(const char *source, const std::string &msg)
}
else
{
- anope_cmd_notice2(source, this->nick, msg.c_str());
+ anope_cmd_notice(source, this->nick, msg.c_str());
}
}