diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 14:24:13 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 14:24:13 +0000 |
commit | cfa88f43315973679bc63833050c991f38436240 (patch) | |
tree | c670a57b8bc624e1ee1194e80ce649665929c47c /src/protocol/bahamut.c | |
parent | 194957cb29e595e4f324448bf3bd35e2bd3b36f4 (diff) |
Last bits of renaming protocol.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1316 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/bahamut.c')
-rw-r--r-- | src/protocol/bahamut.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c index c8d40b0bf..c2293a38d 100644 --- a/src/protocol/bahamut.c +++ b/src/protocol/bahamut.c @@ -1093,7 +1093,7 @@ int anope_event_admin(const char *source, int ac, const char **av) return MOD_CONT; } -int BahamutIRCdProto::flood_mode_check(const char *value) +int BahamutIRCdProto::IsFloodModeParamValid(const char *value) { char *dp, *end; if (value && *value != ':' && strtoul((*value == '*' ? value + 1 : value), &dp, 10) > 0 && *dp == ':' && *(++dp) && strtoul(dp, &end, 10) > 0 && !*end) return 1; |