]> andersk Git - moira.git/blobdiff - clients/moira/pobox.c
Code style cleanup. (No functional changes)
[moira.git] / clients / moira / pobox.c
index d723de8632887f2ff593b528fec231e9742d7064..17f49841c8dba960df1ab25586c142b1c291433f 100644 (file)
@@ -5,17 +5,17 @@
 /*     This is the file pobox.c for the MOIRA Client, which allows a nieve
  *      user to quickly and easily maintain most parts of the MOIRA database.
  *     It Contains: Functions for handling the poboxes.
- *     
+ *
  *     Created:        7/10/88
  *     By:             Chris D. Peterson
  *
  *      $Source$
  *      $Author$
  *      $Header$
- *     
+ *
  *     Copyright 1988 by the Massachusetts Institute of Technology.
  *
- *     For further information on copyright and distribution 
+ *     For further information on copyright and distribution
  *     see the file mit-copyright.h
  */
 
  *     Returns: MR_CONT
  */
 
-static void
-PrintPOBox(info)
-char ** info;
+static void PrintPOBox(char **info)
 {
-    char buf[BUFSIZ];
-    
-    sprintf(buf, "Address: %-10s Box: %-35s Type: %s", info[PO_NAME],
-           info[PO_BOX], info[PO_TYPE]);
-    Put_message(buf);
-    sprintf(buf, MOD_FORMAT, info[4], info[3], info[5]);
-    Put_message(buf);
+  char buf[BUFSIZ];
+
+  sprintf(buf, "Address: %-10s Box: %-35s Type: %s", info[PO_NAME],
+         info[PO_BOX], info[PO_TYPE]);
+  Put_message(buf);
+  sprintf(buf, MOD_FORMAT, info[4], info[3], info[5]);
+  Put_message(buf);
 }
 
 /*     Function Name: RealPrintPOMachines
@@ -59,11 +57,9 @@ char ** info;
  *     Returns: none.
  */
 
-static void
-RealPrintPOMachines(info)
-char ** info;
+static void RealPrintPOMachines(char **info)
 {
-    Print(1, info + 1, (char *) NULL);
+  Print(1, info + 1, NULL);
 }
 
 /*     Function Name: PrintPOMachines
@@ -72,23 +68,23 @@ char ** info;
  *     Returns: SUB_ERROR if the machines could not be printed.
  */
 
-static int
-PrintPOMachines()
+static int PrintPOMachines(void)
 {
-    register int status;
-    static char * args[] = {"pop", NULL};
-    struct qelem * top = NULL;
-    
-    if ( (status = do_mr_query("get_server_locations", CountArgs(args), args,
-                               StoreInfo, (char *)&top)) != MR_SUCCESS) {
-       com_err(program_name, status, " in get_server_locations.");
-       return(SUB_ERROR);
+  register int status;
+  static char *args[] = {"pop", NULL};
+  struct qelem *top = NULL;
+
+  if ((status = do_mr_query("get_server_locations", CountArgs(args), args,
+                           StoreInfo, (char *)&top)))
+    {
+      com_err(program_name, status, " in get_server_locations.");
+      return SUB_ERROR;
     }
-    
-    top = QueueTop(top);
-    Loop(top, RealPrintPOMachines);
-    FreeQueue(top);
-    return(SUB_NORMAL);
+
+  top = QueueTop(top);
+  Loop(top, RealPrintPOMachines);
+  FreeQueue(top);
+  return SUB_NORMAL;
 }
 
 /*     Function Name: GetUserPOBox
@@ -97,35 +93,32 @@ PrintPOMachines()
  *     Returns: DM_NORMAL.
  */
 
-/* ARGSUSED */
-int
-GetUserPOBox(argc, argv)
-int argc;
-char ** argv;
+int GetUserPOBox(int argc, char **argv)
 {
-    register int status;
-    struct qelem * top = NULL;
-    char buf[BUFSIZ];
-
-    if (!ValidName(argv[1]))
-       return(DM_NORMAL);
-    
-    switch (status = do_mr_query("get_pobox", 1, argv + 1, StoreInfo, 
-                                 (char *)&top)) {
+  register int status;
+  struct qelem *top = NULL;
+  char buf[BUFSIZ];
+
+  if (!ValidName(argv[1]))
+    return DM_NORMAL;
+
+  switch ((status = do_mr_query("get_pobox", 1, argv + 1, StoreInfo,
+                               (char *)&top)))
+    {
     case MR_NO_MATCH:
-       Put_message("This user has no P.O. Box.");
-       break;
+      Put_message("This user has no P.O. Box.");
+      break;
     case MR_SUCCESS:
-       sprintf(buf,"Current pobox for user %s: \n", argv[1]);
-       Put_message("");
-       top = QueueTop(top);
-       Loop(top, PrintPOBox);  /* should only return 1 box. */
-       FreeQueue(top);
-       break;
+      sprintf(buf, "Current pobox for user %s: \n", argv[1]);
+      Put_message("");
+      top = QueueTop(top);
+      Loop(top, PrintPOBox);   /* should only return 1 box. */
+      FreeQueue(top);
+      break;
     default:
-       com_err(program_name, status, " in get_pobox.");
+      com_err(program_name, status, " in get_pobox.");
     }
-    return(DM_NORMAL);
+  return DM_NORMAL;
 }
 
 /*     Function Name: GetNewLocalPOBox
@@ -134,24 +127,23 @@ char ** argv;
  *     Returns: machine - name of the machine for then new pop box, or NULL.
  */
 
-static char *
-GetNewLocalPOBox(local_user)
-char * local_user;
+static char *GetNewLocalPOBox(char *local_user)
 {
-    char temp_buf[BUFSIZ];
-
-    sprintf(temp_buf,"%s %s", "Pick one of the following",
-           "machines for this user's Post Office.");
-    Put_message(temp_buf);
-    Put_message("");
-    if (PrintPOMachines() == SUB_NORMAL) {
-       Put_message("");
-       if (!Prompt_input("Which Machine? ", temp_buf, BUFSIZ))
-         return((char *) SUB_ERROR);
-       return(canonicalize_hostname(strsave(temp_buf)));
+  char temp_buf[BUFSIZ];
+
+  sprintf(temp_buf, "%s %s", "Pick one of the following",
+         "machines for this user's Post Office.");
+  Put_message(temp_buf);
+  Put_message("");
+  if (PrintPOMachines() == SUB_NORMAL)
+    {
+      Put_message("");
+      if (!Prompt_input("Which Machine? ", temp_buf, BUFSIZ))
+       return (char *) SUB_ERROR;
+      return canonicalize_hostname(strsave(temp_buf));
     }
-    Put_message("Could not get machines to choose from, quitting.");
-    return((char *) SUB_ERROR);
+  Put_message("Could not get machines to choose from, quitting.");
+  return (char *) SUB_ERROR;
 }
 
 /*     Function Name: SetUserPOBox
@@ -160,107 +152,111 @@ char * local_user;
  *     Returns: DM_NORMAL.
  */
 
-int
-SetUserPOBox(argc, argv)
-int argc;
-char **argv;
+int SetUserPOBox(int argc, char **argv)
 {
-    register int status;
-    char *type, temp_buf[BUFSIZ], *local_user, *args[10], box[BUFSIZ];
-    char *temp_box;
-    struct qelem * top = NULL;
-    local_user = argv[1];
-
-    if (!ValidName(local_user))
-       return(DM_NORMAL);
-    
-    /* Print the current PO Box info */
-    switch (status = do_mr_query("get_pobox", 1, argv + 1, StoreInfo, 
-                                 (char *)&top)) {
+  register int status;
+  char *type, temp_buf[BUFSIZ], *local_user, *args[10], box[BUFSIZ];
+  char *temp_box;
+  struct qelem *top = NULL;
+  local_user = argv[1];
+
+  if (!ValidName(local_user))
+    return DM_NORMAL;
+
+  /* Print the current PO Box info */
+  switch ((status = do_mr_query("get_pobox", 1, argv + 1, StoreInfo,
+                               (char *)&top)))
+    {
     case MR_SUCCESS:
-       sprintf(temp_buf,"Current pobox for user %s: \n", local_user);
-       Put_message("");
-       top = QueueTop(top);
-       Loop(top, PrintPOBox);  /* should only return 1 box. */
-       FreeQueue(top);
-       break;
+      sprintf(temp_buf, "Current pobox for user %s: \n", local_user);
+      Put_message("");
+      top = QueueTop(top);
+      Loop(top, PrintPOBox);   /* should only return 1 box. */
+      FreeQueue(top);
+      break;
     case MR_NO_MATCH:
-       Put_message("This user has no P.O. Box.");
-       break;
+      Put_message("This user has no P.O. Box.");
+      break;
     default:
-       com_err(program_name, status, " in get_pobox.");
-       return(DM_NORMAL); 
+      com_err(program_name, status, " in get_pobox.");
+      return DM_NORMAL;
     }
 
-    sprintf(temp_buf, "Assign %s a local PO Box (y/n)", local_user);
-    switch (YesNoQuestion(temp_buf, TRUE)) {
+  sprintf(temp_buf, "Assign %s a local PO Box (y/n)", local_user);
+  switch (YesNoQuestion(temp_buf, TRUE))
+    {
     case TRUE:
-       type = LOCAL_BOX;
-       switch (YesNoQuestion("Use Previous Local Box (y/n)", TRUE)) {
+      type = LOCAL_BOX;
+      switch (YesNoQuestion("Use Previous Local Box (y/n)", TRUE))
+       {
        case TRUE:
-           switch (status = do_mr_query("set_pobox_pop", 1, 
-                                         &local_user, Scream, NULL)) {
+         switch ((status = do_mr_query("set_pobox_pop", 1,
+                                       &local_user, Scream, NULL)))
+           {
            case MR_SUCCESS:
-               return(DM_NORMAL);
+             return DM_NORMAL;
            case MR_MACHINE:
-               sprintf(temp_buf, "%s did not have a previous local PO Box.",
-                       local_user);
-               Put_message(temp_buf);
-               if ( (temp_box = GetNewLocalPOBox(local_user)) !=
-                       (char *) SUB_ERROR) {
-                   strcpy(box, temp_box);
-                   free(temp_box);
+             sprintf(temp_buf, "%s did not have a previous local PO Box.",
+                     local_user);
+             Put_message(temp_buf);
+             if ((temp_box = GetNewLocalPOBox(local_user)) !=
+                 (char *) SUB_ERROR)
+               {
+                 strcpy(box, temp_box);
+                 free(temp_box);
                }
-               else
-                   return(DM_NORMAL);
-               break;
+             else
+               return DM_NORMAL;
+             break;
            default:
-               com_err(program_name, status, " in set_pobox_pop.");
-               return(DM_NORMAL);
+             com_err(program_name, status, " in set_pobox_pop.");
+             return DM_NORMAL;
            }
-           break;
+         break;
        case FALSE:
-           if ( (temp_box = GetNewLocalPOBox(local_user)) !=
-                       (char *) SUB_ERROR) {
-               strcpy(box, temp_box);
-               free(temp_box);
+         if ((temp_box = GetNewLocalPOBox(local_user)) !=
+             (char *) SUB_ERROR)
+           {
+             strcpy(box, temp_box);
+             free(temp_box);
            }
-           else
-               return(DM_NORMAL);
-           break;
+         else
+           return DM_NORMAL;
+         break;
        default:
-           return(DM_NORMAL);
+         return DM_NORMAL;
        }
-       break;
+      break;
     case FALSE:
-       type = FOREIGN_BOX;
-       sprintf(temp_buf, "Set up a foreign PO Box for %s (y/n)", local_user);
-       switch( YesNoQuestion(temp_buf, TRUE)) {
+      type = FOREIGN_BOX;
+      sprintf(temp_buf, "Set up a foreign PO Box for %s (y/n)", local_user);
+      switch (YesNoQuestion(temp_buf, TRUE))
+       {
        case TRUE:
-           if (!Prompt_input("Foreign PO Box for this user? ", box, BUFSIZ))
-               return(DM_NORMAL);
-           break;
+         if (!Prompt_input("Foreign PO Box for this user? ", box, BUFSIZ))
+           return DM_NORMAL;
+         break;
        case FALSE:
        default:
-           return(DM_NORMAL);  /* ^C hit. */
+         return DM_NORMAL;     /* ^C hit. */
        }
-       break;
+      break;
     default:                   /* ^C hit. */
-       Put_message("Aborted.");
-       return(DM_NORMAL);
+      Put_message("Aborted.");
+      return DM_NORMAL;
     }
 
-    args[PO_NAME] = local_user;
-    args[PO_TYPE] = type;
-    args[PO_BOX] = box;
-    args[PO_END] = NULL;
-    if ( (status = do_mr_query("set_pobox", CountArgs(args), args, 
-                               Scream, NULL)) != MR_SUCCESS )
-       com_err(program_name, status, " in ChangeUserPOBox");
-    else
-       Put_message("PO Box assigned.");
-
-    return (DM_NORMAL);
+  args[PO_NAME] = local_user;
+  args[PO_TYPE] = type;
+  args[PO_BOX] = box;
+  args[PO_END] = NULL;
+  if ((status = do_mr_query("set_pobox", CountArgs(args), args,
+                           Scream, NULL)))
+    com_err(program_name, status, " in ChangeUserPOBox");
+  else
+    Put_message("PO Box assigned.");
+
+  return DM_NORMAL;
 }
 
 /*     Function Name: RemoveUserPOBox
@@ -269,27 +265,24 @@ char **argv;
  *     Returns: DM_NORMAL.
  */
 
-/*ARGSUSED */
-int
-RemoveUserPOBox(argc, argv)
-int argc;
-char ** argv;
+int RemoveUserPOBox(int argc, char **argv)
 {
-    register int status;
-    char temp_buf[BUFSIZ];
-   
-    if (!ValidName(argv[1]))
-       return(DM_NORMAL);
-
-    sprintf(temp_buf,
-           "Are you sure that you want to remove %s's PO Box (y/n)", argv[1]);
-    
-    if (Confirm(temp_buf)) {
-       if ( (status = do_mr_query("delete_pobox", 1, argv + 1,
-                                   Scream, NULL)) != MR_SUCCESS)
-           com_err(program_name, status, " in delete_pobox.");
-       else
-           Put_message("PO Box removed.");
+  register int status;
+  char temp_buf[BUFSIZ];
+
+  if (!ValidName(argv[1]))
+    return DM_NORMAL;
+
+  sprintf(temp_buf, "Are you sure that you want to remove %s's PO Box (y/n)",
+         argv[1]);
+
+  if (Confirm(temp_buf))
+    {
+      if ((status = do_mr_query("delete_pobox", 1, argv + 1,
+                               Scream, NULL)))
+       com_err(program_name, status, " in delete_pobox.");
+      else
+       Put_message("PO Box removed.");
     }
-    return(DM_NORMAL);
+  return DM_NORMAL;
 }
This page took 0.052983 seconds and 4 git commands to generate.