diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 14:04:05 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 14:04:05 +0000 |
commit | 17ac25990b12b502492cbab48597ebf140fb6c28 (patch) | |
tree | cfa9b5292ffe2460e322cea2eebbafb18f511f17 /src/ircd.c | |
parent | ee71533413d5e12a80d94fb7a860fb6b2e0bda3a (diff) |
cmd_unban -> SendBanDel. TODO: should this be yanked in favour of SendMode?
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1311 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ircd.c b/src/ircd.c index ccd0d9ff8..26f453462 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -312,9 +312,9 @@ void anope_SendSGLine(const char *mask, const char *reason) ircdproto->SendSGLine(mask, reason); } -void anope_cmd_unban(const char *name, const char *nick) +void anope_SendBanDel(const char *name, const char *nick) { - ircdproto->cmd_unban(name, nick); + ircdproto->SendBanDel(name, nick); } void anope_SendSVSMode_chan(const char *name, const char *mode, const char *nick) |