mirror of
https://github.com/anope/anope.git
synced 2026-07-02 06:46:38 +02:00
Include gecos in GetNUHMask
This commit is contained in:
+3
-2
@@ -830,8 +830,9 @@ const Anope::string Entry::GetNUHMask() const
|
||||
{
|
||||
Anope::string n = nick.empty() ? "*" : nick,
|
||||
u = user.empty() ? "*" : user,
|
||||
h = host.empty() ? "*" : host;
|
||||
return n + "!" + u + "@" + h;
|
||||
h = host.empty() ? "*" : host,
|
||||
r = real.empty() ? "" : "#" + real;
|
||||
return n + "!" + u + "@" + h + r;
|
||||
}
|
||||
|
||||
bool Entry::Matches(User *u, bool full) const
|
||||
|
||||
Reference in New Issue
Block a user