From bb666ab90209cd65436757788546ccb354da641b Mon Sep 17 00:00:00 2001 From: rburchell Date: Thu, 19 Feb 2009 21:59:56 +0000 Subject: [PATCH] Fix missing variable. git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2120 5417fbe8-f217-4b02-8779-1006273d7864 --- src/protocol/unreal32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 82dbc900b..23789ff3f 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -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 */