summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr/auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/auth.c b/usr/auth.c
index 1ffb258..5c819c2 100644
--- a/usr/auth.c
+++ b/usr/auth.c
@@ -259,7 +259,7 @@ static int
acl_text_to_number(const char *text, unsigned long *num)
{
char *end;
- unsigned long number = *num;
+ unsigned long number;
if (text[0] == '0' && (text[1] == 'x' || text[1] == 'X'))
number = strtoul(text + 2, &end, 16);