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/protocol/unreal32.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/protocol/unreal32.c')
-rw-r--r-- | src/protocol/unreal32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 8d7013546..39cb72996 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -1378,13 +1378,13 @@ int UnrealIRCdProto::flood_mode_check(const char *value) 1 = valid nick 0 = nick is in valid */ -int UnrealIRCdProto::valid_nick(const char *nick) +int UnrealIRCdProto::IsNickValid(const char *nick) { if (!stricmp("ircd", nick) || !stricmp("irc", nick)) return 0; return 1; } -int UnrealIRCdProto::valid_chan(const char *chan) +int UnrealIRCdProto::IsChannelValid(const char *chan) { if (strchr(chan, ':')) return 0; return 1; |