1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-29 21:06:36 +02:00

- #0002846 reported by alex323, patched by WolfSage, regarding local ircop cannot issue CLOSE command

This commit is contained in:
Bram Matthys
2007-04-25 12:43:20 +00:00
parent 91391a46b5
commit 043948990c
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -1457,3 +1457,4 @@
the network.
- #0003212 patched by Grunt, regarding /userip <someone_else> seemingly
shows your own (cloaked) IP.
- #0002846 reported by alex323, patched by WolfSage, regarding local ircop cannot issue CLOSE command
+1 -1
View File
@@ -1695,7 +1695,7 @@ struct liststruct {
*/
#define MyConnect(x) ((x)->fd != -256)
#define MyClient(x) (MyConnect(x) && IsClient(x))
#define MyOper(x) (MyConnect(x) && IsOper(x))
#define MyOper(x) (MyConnect(x) && IsAnOper(x))
#ifdef CLEAN_COMPILE
#define TStime() (time(NULL) + TSoffset)