1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-08 14:43:11 +02:00

- Fixed chmode +u again.

This commit is contained in:
Bram Matthys
2003-02-19 16:02:29 +00:00
parent 0d1e674fcf
commit 2f10a46e1e
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -1929,3 +1929,4 @@ seen. gmtime warning still there
- Updated win32 compile instructions
- Fixed set::dns error messages
- Fixed win32 compile error
- Fixed chmode +u again.
+2 -1
View File
@@ -977,7 +977,8 @@ void sendto_common_channels(aClient *user, char *pattern, ...)
cptr = users->cptr;
if (!MyConnect(cptr) || sentalong[cptr->slot] == sentalong_marker)
continue;
if ((channels->chptr->mode.mode & MODE_AUDITORIUM) && !is_chanownprotop(user, channels->chptr))
if ((channels->chptr->mode.mode & MODE_AUDITORIUM) &&
!(is_chanownprotop(user, channels->chptr) || is_chanownprotop(cptr, channels->chptr)))
continue;
sentalong[cptr->slot] = sentalong_marker;
vsendto_prefix_one(cptr, user, pattern, vl);