diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-01-14 21:29:08 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2010-01-14 21:29:08 +0000 |
commit | 711787b54d8b57ace877b09587f368cee5553b70 (patch) | |
tree | f5093aeeec5c1f4155e31f72488ae4040e37f551 /src/modes.cpp | |
parent | f2c44c67b59bd4f6a5a01412f2dc5df59010b1da (diff) |
Burned do_sjoin and rewrote it to be sane. This changes how Anope handles new channel creations drasitcally as we now truely track it all instead of hack around it by not initially tracking user joins to new channels
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2755 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/modes.cpp')
-rw-r--r-- | src/modes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modes.cpp b/src/modes.cpp index 23cc87132..9f886cc3e 100644 --- a/src/modes.cpp +++ b/src/modes.cpp @@ -168,9 +168,9 @@ ChannelModeStatus::~ChannelModeStatus() * @param value The key * @return true or false */ -bool ChannelModeKey::IsValid(const char *value) +bool ChannelModeKey::IsValid(const std::string &value) { - if (value && *value != ':' && !strchr(value, ',')) + if (!value.empty() && value.find(':') != std::string::npos && value.find(',') != std::string::npos) return true; return false; |