Removal of variable that no longer has any use

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3483 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
brain 2006-03-06 02:47:57 +00:00
parent 02359de340
commit 41017b931f
2 changed files with 1 additions and 5 deletions

View File

@ -496,7 +496,6 @@ void ModeParser::ProcessModes(char **parameters,userrec* user,chanrec *chan,int
while (modelist[len-1] == ' ')
modelist[--len] = '\0';
bool next_cant_be_modifier = false;
char* modechar;
for (modechar = (modelist + 1); *modechar; ptr++, modechar++)
@ -517,14 +516,11 @@ void ModeParser::ProcessModes(char **parameters,userrec* user,chanrec *chan,int
case '-':
*outl++ = '-';
mdir = 0;
next_cant_be_modifier = true;
break;
case '+':
*outl++ = '+';
mdir = 1;
next_cant_be_modifier = true;
break;
case 'o':

View File

@ -1 +1 @@
echo 3480
echo 3482