OSSP CVS Repository

ossp - Difference in ossp-pkg/petidomo/main.c versions 1.19 and 1.20
Not logged in
[Honeypot]  [Browse]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline
  [History

ossp-pkg/petidomo/main.c 1.19 -> 1.20

--- main.c       2001/01/21 12:00:35     1.19
+++ main.c       2001/02/17 21:59:17     1.20
@@ -1,6 +1,6 @@
 /*
    $Source: /v/ossp/cvs/ossp-pkg/petidomo/main.c,v $
-   $Revision: 1.19 $
+   $Revision: 1.20 $
 
    Copyright (C) 2000 by CyberSolutions GmbH, Germany.
 
@@ -90,24 +90,32 @@
     argv_version_string = (char *)petidomo_version.v_gnu;
     argv_process(args, argc, argv);
 
+    /* Make sure we got all required parameters. */
+
+    if ((!strcasecmp(mode, "deliver") || !strcasecmp(mode, "dump")) && listname == NULL)
+        {
+        fprintf(stderr, "petidomo: %s mode requires a list name argument\n", mode);
+        exit(1);
+        }
+
     /* Member Dump Mode */
-    if (strcasecmp(mode, "dump") == 0) {
+
+    if (strcasecmp(mode, "dump") == 0)
+        {
         char *cp;
         const struct List_Config *ListConfig;
-        if (listname == NULL) {
-            fprintf(stderr, "petidomo: dump mode requires a list name argument\n");
-            exit(1);
-        }
-        if (InitPetidomo(masterconfig_path) != 0) {
+        if (InitPetidomo(masterconfig_path) != 0)
+            {
             fprintf(stderr, "petidomo: failed load master configuration.\n");
             exit(1);
-        }
+            }
         MasterConfig = getMasterConfig();
         ListConfig = getListConfig(listname);
-        if ((cp = loadfile(ListConfig->address_file)) == NULL) {
+        if ((cp = loadfile(ListConfig->address_file)) == NULL)
+            {
             fprintf(stderr, "petidomo: failed to open file \"%s\"\n", ListConfig->address_file);
             exit(1);
-        }
+            }
         fwrite(cp, strlen(cp), 1, stdout);
         free(cp);
         exit(0);

CVSTrac 2.0.1