diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-16 02:03:51 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-16 02:03:51 +0000 |
commit | cbb6c43c7ed32ecf5a2408a865ca6a0e7291b436 (patch) | |
tree | d4709049140bdc92b647ea89aefe2bc66c71c8fe /src/protocol/inspircd12.cpp | |
parent | 92280e7a25f1fb61c03c2c7f499da64e9d191fff (diff) |
Mark perm channels (partly) fixed. Proper fix will wait for 1.9.1.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1743 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/inspircd12.cpp')
-rw-r--r-- | src/protocol/inspircd12.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/protocol/inspircd12.cpp b/src/protocol/inspircd12.cpp index 4d5a314e0..fd48fb924 100644 --- a/src/protocol/inspircd12.cpp +++ b/src/protocol/inspircd12.cpp @@ -826,6 +826,9 @@ int anope_event_fjoin(const char *source, int ac, const char **av) *nicklist = '\0'; *prefixandnick = '\0'; + if (ac <= 4) + return MOD_CONT; + curnick = myStrGetToken(av[ac - 1], ' ', curtoken); while (curnick != NULL) { |