summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-01-23 08:17:05 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-01-23 08:17:05 +0000
commit1f102694aab165071e0f1006f3a6f6547b03b23f (patch)
tree9db546b62c87e754d456e1b6b2a7e747fd0b4740 /src
parent7439706b3ba0409fc297d923c9235227a07133a5 (diff)
Possible fix to bug #998, reported by Ankit (bad password count is not correct).
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1928 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r--src/users.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.c b/src/users.c
index 6d8a6779c..106f15fb7 100644
--- a/src/users.c
+++ b/src/users.c
@@ -43,7 +43,7 @@ User::User(const std::string &snick)
na = NULL;
chans = NULL;
founder_chans = NULL;
- timestamp = my_signon = svid = mode = invalid_pw_time = lastmemosend = lastnickreg = lastmail = 0;
+ invalid_pw_count = timestamp = my_signon = svid = mode = invalid_pw_time = lastmemosend = lastnickreg = lastmail = 0;
strscpy(this->nick, snick.c_str(), NICKMAX);
list = &userlist[HASH(this->nick)];