]> andersk Git - moira.git/blobdiff - clients/moira/lists.c
Change `SMS' to `Moira' where possible.
[moira.git] / clients / moira / lists.c
index 1bd5f7f85f8e435a0d5426cfb367eb2da2d2d3d3..1ff4c1cd115ca80c8c461205e416ca138fd7dda8 100644 (file)
@@ -2,8 +2,8 @@
   static char rcsid_module_c[] = "$Header$";
 #endif
 
-/*     This is the file lists.c for the MOIRA Client, which allows a nieve
- *      user to quickly and easily maintain most parts of the MOIRA database.
+/*     This is the file lists.c for the Moira Client, which allows users
+ *      to quickly and easily maintain most parts of the Moira database.
  *     It Contains: All list manipulation functions, except delete.
  *
  *     Created:        4/12/88
@@ -120,7 +120,7 @@ struct qelem *GetListInfo(int type, char *name1, char *name2)
 {
   char *args[2];
   struct qelem *elem = NULL;
-  register int status;
+  int status;
 
   switch (type)
     {
@@ -276,7 +276,7 @@ int ShowListInfo(int argc, char **argv)
 
 static void RealUpdateList(char **info, Bool junk)
 {
-  register int stat;
+  int stat;
   char **args;
   struct qelem *elem = NULL;
 
@@ -459,7 +459,7 @@ int ListmaintMemberMenuEntry(Menu *m, int argc, char **argv)
 {
   char temp_buf[BUFSIZ];
   char *list_name = argv[1];
-  register int stat;
+  int stat;
 
   if (!ValidName(list_name))
     return DM_QUIT;
@@ -521,7 +521,7 @@ int ListmaintMemberMenuExit(Menu *m)
 int ListMembersByType(char *type)
 {
   char temp_buf[BUFSIZ];
-  register int status;
+  int status;
   char *args[10];
 
   args[0] = current_list;
@@ -639,7 +639,7 @@ int GetMemberInfo(char *action, char **ret_argv)
 int AddMember(void)
 {
   char *args[10], temp_buf[BUFSIZ], *p;
-  register int status;
+  int status;
   struct qelem *mailhubs, *elem, *GetTypeValues();
 
   if (GetMemberInfo("add", args) == SUB_ERROR)
@@ -703,7 +703,7 @@ int AddMember(void)
 int DeleteMember(void)
 {
   char *args[10];
-  register int status;
+  int status;
 
   if (GetMemberInfo("delete", args) == SUB_ERROR)
     return DM_NORMAL;
@@ -734,7 +734,7 @@ int DeleteMember(void)
 
 int InterRemoveItemFromLists(void)
 {
-  register int status;
+  int status;
   char *type, *name, *args[10], buf[BUFSIZ];
   struct qelem *top, *elem;
 
@@ -883,7 +883,7 @@ int ListByAdministrator(void)
 
 int ListAllPublicMailLists(void)
 {
-  register int status;
+  int status;
   static char *args[] = {
     "TRUE",                    /* active */
     "TRUE",                    /* public */
This page took 0.056532 seconds and 4 git commands to generate.