summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-19 21:59:56 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-02-19 21:59:56 +0000
commitbb666ab90209cd65436757788546ccb354da641b (patch)
tree512ab6f958c1b3945e0628537159260141693bdb /src
parent7723437a81ee0858a448ad599889469c4113dd57 (diff)
Fix missing variable.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2120 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r--src/protocol/unreal32.c2
1 files changed, 1 insertions, 1 deletions
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 */