diff options
author | wens <wens@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-08-08 22:23:24 +0800 |
---|---|---|
committer | wens <wens@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-08-08 22:23:24 +0800 |
commit | e041c43c8961880cebbc18c1be59bde99582ea2a (patch) | |
tree | e9ae727e9d3e52ffbb524714644d635bcbc44b47 /include | |
parent | 72fa46586658fa5a7e797e66167583b17cb5a858 (diff) | |
download | pttbbs-e041c43c8961880cebbc18c1be59bde99582ea2a.tar pttbbs-e041c43c8961880cebbc18c1be59bde99582ea2a.tar.gz pttbbs-e041c43c8961880cebbc18c1be59bde99582ea2a.tar.bz2 pttbbs-e041c43c8961880cebbc18c1be59bde99582ea2a.tar.lz pttbbs-e041c43c8961880cebbc18c1be59bde99582ea2a.tar.xz pttbbs-e041c43c8961880cebbc18c1be59bde99582ea2a.tar.zst pttbbs-e041c43c8961880cebbc18c1be59bde99582ea2a.zip |
add super sys support op (群組長)
HUGETLB doesn't need root
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3010 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r-- | include/perm.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/perm.h b/include/perm.h index 03e5b432..c49de88e 100644 --- a/include/perm.h +++ b/include/perm.h @@ -28,21 +28,21 @@ #define PERM_VIEWSYSOP 000004000000 /* µøı¯¸ªø */ #define PERM_LOGUSER 000010000000 /* Æ[¹î¨Ï¥ÎªÌ¦æÂÜ */ #define PERM_NOCITIZEN 000020000000 /* ݶ¹Ü¤½Åv */ -#define PERM_RELATION 000040000000 /* ¤½Ãö²Õ */ +#define PERM_SYSSUPERSUBOP 000040000000 /* ¸s²Õªø */ #define PERM_ACCTREG 000100000000 /* ±b¸¹¼f®Ö²Õ */ #define PERM_PRG 000200000000 /* µ{¦¡²Õ */ #define PERM_ACTION 000400000000 /* ¬¡°Ê²Õ */ #define PERM_PAINT 001000000000 /* ¬ü¤u²Õ */ #define PERM_LAW 002000000000 /* ¥ßªk²Õ */ #define PERM_SYSSUBOP 004000000000 /* ¤p²Õªø */ -#define PERM_MSYSOP 010000000000 /* ¤@¯Å¥DºÞ */ +#define PERM_OLDSYSOP 010000000000 /* °h¥ð¯¸ªø */ #define PERM_PTT 020000000000 /* ¢Þ¢ü¢ü */ #define NUMPERMS 32 #define PERM_DEFAULT (PERM_BASIC | PERM_CHAT | PERM_PAGE ) -#define PERM_MANAGER (PERM_RELATION | PERM_ACCTREG | PERM_ACTION | PERM_PAINT | PERM_LAW) -#define PERM_ADMIN (PERM_ACCOUNTS | PERM_SYSOP | PERM_SYSSUBOP | PERM_MANAGER | PERM_BM) +#define PERM_MANAGER (PERM_ACCTREG | PERM_ACTION | PERM_PAINT | PERM_LAW) +#define PERM_ADMIN (PERM_ACCOUNTS | PERM_SYSOP | PERM_SYSSUBOP | PERM_SYSSUPERSUBOP | PERM_MANAGER | PERM_BM) #define PERM_ALLBOARD (PERM_SYSOP | PERM_BOARD) #define PERM_LOGINCLOAK (PERM_SYSOP | PERM_ACCOUNTS) #define PERM_SEEULEVELS (PERM_SYSOP) |