diff options
| author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-10-03 03:39:12 +0000 |
|---|---|---|
| committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-10-03 03:39:12 +0000 |
| commit | 651aacd3e9f625871981924556639f1cecdc85af (patch) | |
| tree | 5fe5566c29cc7bb48b5ad5c29ff7dea4be19828b /src | |
| parent | d02f03a7a8e89e8173c5456692338e469d5ddc80 (diff) | |
Fixed a typo introduced in r2523 causing NickServ kill to not work
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2527 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
| -rw-r--r-- | src/nickserv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nickserv.c b/src/nickserv.c index 1dbba0671..a20a0b8b1 100644 --- a/src/nickserv.c +++ b/src/nickserv.c @@ -57,7 +57,7 @@ class NickServCollide : public Timer { /* If they identified or don't exist anymore, don't kill them. */ User *u = finduser(na->nick); - if (!u || !nick_identified(u) || u->my_signon > this->GetSetTime()) + if (!u || nick_identified(u) || u->my_signon > this->GetSetTime()) return; /* The RELEASE timeout will always add to the beginning of the |
