mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-08 20:23:12 +02:00
Fixed a +c bug involving locops
This commit is contained in:
@@ -1261,3 +1261,5 @@ seen. gmtime warning still there
|
||||
- Fixed a stupid m_oper bug
|
||||
- Fixed a win32 editor bug causing a crash when you click save multiple times
|
||||
- Fixed a /stats q bug where it would crash if there was an sqline with no reason, reported by toji (#0000120)
|
||||
- Fixed a bug that caused locops to see client exiting but not client connecting notices while +s +c,
|
||||
reported and fixed by cmx (#0000123)
|
||||
|
||||
+1
-1
@@ -1664,7 +1664,7 @@ void sendto_connectnotice(char *nick, anUser *user, aClient *sptr)
|
||||
|
||||
for (i = 0; i <= LastSlot; i++)
|
||||
if ((cptr = local[i]) && !IsServer(cptr) && !IsMe(cptr) &&
|
||||
IsOper(cptr) && (cptr->user->snomask & SNO_CLIENT))
|
||||
IsAnOper(cptr) && (cptr->user->snomask & SNO_CLIENT))
|
||||
{
|
||||
if (IsHybNotice(cptr))
|
||||
sendto_one(cptr, ":%s NOTICE %s :%s", me.name,
|
||||
|
||||
Reference in New Issue
Block a user