diff options
author | Adam <Adam@anope.org> | 2011-08-24 13:57:56 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-08-24 13:57:56 -0400 |
commit | dffed5a2596e1877457ec14e2bf46bfe508443c9 (patch) | |
tree | a5850dcf28fd2cc2f74f236764aeba01056a714d | |
parent | 5d681a74ad8ab7c771e07673413801fd1c4f6e5b (diff) | |
parent | d80e00f5d72e3f0f18a6a629969c03ffc33c878b (diff) |
Merge branch '1.9' of anope.git.sf.net:/gitroot/anope/anope into 1.9
-rw-r--r-- | modules/pseudoclients/ns_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pseudoclients/ns_main.cpp b/modules/pseudoclients/ns_main.cpp index 89789db1b..c31590881 100644 --- a/modules/pseudoclients/ns_main.cpp +++ b/modules/pseudoclients/ns_main.cpp @@ -34,7 +34,7 @@ class MyNickServService : public NickServService return; } - if (!u->IsIdentified() && !u->fingerprint.empty() && na->nc->FindCert(u->fingerprint)) + if (!(u->Account() == na->nc) && !u->fingerprint.empty() && na->nc->FindCert(u->fingerprint)) { u->SendMessage(NickServ, _("SSL Fingerprint accepted, you are now identified.")); Log(u) << "automatically identified for account " << na->nc->display << " using a valid SSL fingerprint."; |