diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-01-23 08:38:45 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-01-23 08:38:45 +0000 |
commit | acde0c64ee9ef68fced861a8c419184e0306ce81 (patch) | |
tree | b78ab1439c47f28520dd1f188443189bb32efb29 /src/channels.c | |
parent | ea0533be0f4f9d6dd50e2df1c3d0c47c405847b9 (diff) |
Correctly handle parameterised modes in FJOIN, fixes bug #987.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1930 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/channels.c')
-rw-r--r-- | src/channels.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/channels.c b/src/channels.c index c35748c23..350c60fd3 100644 --- a/src/channels.c +++ b/src/channels.c @@ -1114,6 +1114,14 @@ void do_sjoin(const char *source, int ac, const char **av) /* Handle a channel MODE command. */ +/* + * av[0]: channel + * av[1]: (tsmode) channel TS (this should be moved to a protocol module) + * av[2-]: (tsmode) modes and parameters + * + * av[1-]: modes and parameters. + * + */ void do_cmode(const char *source, int ac, const char **av) { Channel *chan; |