1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-10 21:23:12 +02:00

Fixed bug in ISON.

This commit is contained in:
Bram Matthys
2003-02-04 18:50:55 +00:00
parent 0b2d842d55
commit d98e7d3112
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -1875,3 +1875,4 @@ seen. gmtime warning still there
- Documentation updates for nodnscache.
- Fixed minor memleak with zip links.
- Code cleanup in m_umode
- Fixed bug in ISON
+1 -1
View File
@@ -2129,7 +2129,7 @@ CMD_FUNC(m_ison)
{
strcpy(namebuf, acptr->user->username);
strcat(namebuf, "@");
strcat(namebuf, acptr->user->realhost);
strcat(namebuf, IsHidden(acptr) ? acptr->user->virhost : acptr->user->realhost);
if (match(user, namebuf))
continue;
*--user = '!';