aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/lists.c
diff options
context:
space:
mode:
Diffstat (limited to 'FICS/lists.c')
-rw-r--r--FICS/lists.c43
1 files changed, 22 insertions, 21 deletions
diff --git a/FICS/lists.c b/FICS/lists.c
index cc92297..618855b 100644
--- a/FICS/lists.c
+++ b/FICS/lists.c
@@ -22,27 +22,28 @@
List *firstGlobalList = NULL;
-PRIVATE ListTable ListArray[] =
-{{P_HEAD, "admin"},
-{P_GOD, "removedcom"},
-{P_ADMIN, "filter"},
-{P_ADMIN, "ban"},
-{P_ADMIN, "abuser"},
-{P_ADMIN, "muzzle"},
-{P_ADMIN, "cmuzzle"},
-{P_PUBLIC, "fm"},
-{P_PUBLIC, "im"},
-{P_PUBLIC, "gm"},
-{P_PUBLIC, "blind"},
-{P_PUBLIC, "teams"},
-{P_PUBLIC, "computer"},
-{P_PUBLIC, "td"},
-{P_PERSONAL, "censor"},
-{P_PERSONAL, "gnotify"},
-{P_PERSONAL, "noplay"},
-{P_PERSONAL, "notify"},
-{P_PERSONAL, "channel"},
-{0, NULL}};
+PRIVATE ListTable ListArray[] = {
+ {P_HEAD, "admin"},
+ {P_GOD, "removedcom"},
+ {P_ADMIN, "filter"},
+ {P_ADMIN, "ban"},
+ {P_ADMIN, "abuser"},
+ {P_ADMIN, "muzzle"},
+ {P_ADMIN, "cmuzzle"},
+ {P_PUBLIC, "fm"},
+ {P_PUBLIC, "im"},
+ {P_PUBLIC, "gm"},
+ {P_PUBLIC, "blind"},
+ {P_PUBLIC, "teams"},
+ {P_PUBLIC, "computer"},
+ {P_PUBLIC, "td"},
+ {P_PERSONAL, "censor"},
+ {P_PERSONAL, "gnotify"},
+ {P_PERSONAL, "noplay"},
+ {P_PERSONAL, "notify"},
+ {P_PERSONAL, "channel"},
+ {0, NULL},
+};
/* find a list. loads from disk if not in memory. */
PRIVATE List *list_find(int p, enum ListWhich l)