diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 14:23:04 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 14:23:04 +0000 |
commit | 194957cb29e595e4f324448bf3bd35e2bd3b36f4 (patch) | |
tree | e5fdd56fdba2729fe6806bcb49cc517a7b176fc9 /src/ircd.c | |
parent | 4fbf03aabab32764a7609288bf53f6691ce98267 (diff) |
valid_(nick|chan) -> Is(Nick|Chan)Valid
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1315 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ircd.c b/src/ircd.c index 4b549e132..3f4afa35c 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -372,14 +372,14 @@ void anope_SendJupe(const char *jserver, const char *who, const char *reason) ircdproto->SendJupe(jserver, who, reason); } -int anope_valid_nick(const char *nick) +int anope_IsNickValid(const char *nick) { - return ircdproto->valid_nick(nick); + return ircdproto->IsNickValid(nick); } -int anope_valid_chan(const char *chan) +int anope_IsChannelValid(const char *chan) { - return ircdproto->valid_chan(chan); + return ircdproto->IsChannelValid(chan); } |