1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 19:13:12 +02:00

Fix missing variable.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2120 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rburchell
2009-02-19 21:59:56 +00:00
parent 7723437a81
commit bb666ab902
+1 -1
View File
@@ -533,7 +533,7 @@ class UnrealIRCdProto : public IRCDProto
{
void ProcessUsermodes(User *user, int ac, const char **av)
{
int backup, add = 1; /* 1 if adding modes, 0 if deleting */
int add = 1; /* 1 if adding modes, 0 if deleting */
const char *modes = av[0];
--ac;
if (!user || !modes) return; /* Prevent NULLs from doing bad things */