1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-05 05:13:13 +02:00

Updated win32 compile guide, more +I removal

This commit is contained in:
luke
2002-06-23 20:10:16 +00:00
parent fe721a0f43
commit f7deba3bda
4 changed files with 38 additions and 5 deletions
+9 -1
View File
@@ -1044,9 +1044,15 @@ extern char *getfield();
#define STAR1 OFLAG_SADMIN|OFLAG_ADMIN|OFLAG_NETADMIN|OFLAG_COADMIN
#define STAR2 OFLAG_ZLINE|OFLAG_HIDE|OFLAG_WHOIS
#define STAR3 OFLAG_INVISIBLE
#ifdef ENABLE_INVISOPER
#define STAR3 OFLAG_INVISIBLE
#endif
static int oper_access[] = {
#ifdef ENABLE_INVISOPER
~(STAR1 | STAR2 | STAR3), '*',
#else
~(STAR1 | STAR2 ), '*',
#endif
OFLAG_LOCAL, 'o',
OFLAG_GLOBAL, 'O',
OFLAG_REHASH, 'r',
@@ -1075,7 +1081,9 @@ static int oper_access[] = {
OFLAG_WHOIS, 'W',
OFLAG_HIDE, 'H',
/* OFLAG_AGENT, 'S',*/
#ifdef ENABLE_INVISOPER
OFLAG_INVISIBLE, '^',
#endif
0, 0
};