diff options
| author | 2005-05-04 12:57:35 +0000 | |
|---|---|---|
| committer | 2005-05-04 12:57:35 +0000 | |
| commit | daa68cffe0b8231864dab7a89c72faececc00b3c (patch) | |
| tree | a6d9da5a7e57979a32e5ffe6b772b3dbb0715edd /src/mode.cpp | |
| parent | Fixed off-by-one error in client read() (improbable due to size of buffer but... (diff) | |
Fix to a mode parsing bug (eating wrong version of parameter?)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1304 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/mode.cpp')
| -rw-r--r-- | src/mode.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mode.cpp b/src/mode.cpp index e0c4d21db..87876141a 100644 --- a/src/mode.cpp +++ b/src/mode.cpp @@ -1057,7 +1057,8 @@ void process_modes(char **parameters,userrec* user,chanrec *chan,int status, int { if (t == -1) { - pc++; + //pc++; + param++; } else { |
