diff options
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index 4d9246a14..f2206be7f 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -354,7 +354,8 @@ void User::Identify(NickAlias *na) ircdproto->SendAccountLogin(this, this->Account()); ircdproto->SetAutoIdentificationToken(this); - if (na->nc->HasFlag(NI_UNCONFIRMED) == false) + NickAlias *this_na = findnick(this->nick); + if (this_na && this_na->nc == na->nc && this_na->nc->HasFlag(NI_UNCONFIRMED) == false) this->SetMode(NickServ, UMODE_REGISTERED); if (ircd->vhost) do_on_id(this); |