Don't display multipart/parallel in parallel. Always serialize displaying.
[mmh] / uip / mhshow.c
index ebbd8ec..6e694c4 100644 (file)
@@ -23,34 +23,27 @@ static struct swit switches[] = {
        { "check", 0 },
 #define NCHECKSW  1
        { "nocheck", 0 },
-#define SERIALSW  2
-       { "serialonly", 0 },
-#define NSERIALSW  3
-       { "noserialonly", 0 },
-#define VERBSW  4
+#define VERBSW  2
        { "verbose", 0 },
-#define NVERBSW  5
+#define NVERBSW  3
        { "noverbose", 0 },
-#define FILESW  6  /* interface from show */
+#define FILESW  4  /* interface from show */
        { "file file", 0 },
-#define FORMSW  7
+#define FORMSW  5
        { "form formfile", 0 },
-#define PARTSW  8
+#define PARTSW  6
        { "part number", 0 },
-#define TYPESW  9
+#define TYPESW  7
        { "type content", 0 },
-#define RCACHESW  10
+#define RCACHESW  8
        { "rcache policy", 0 },
-#define WCACHESW  11
+#define WCACHESW  9
        { "wcache policy", 0 },
-#define VERSIONSW  12
+#define VERSIONSW  10
        { "version", 0 },
-#define HELPSW  13
+#define HELPSW  11
        { "help", 0 },
-/*
-** switches for debugging
-*/
-#define DEBUGSW  14
+#define DEBUGSW  12
        { "debug", -5 },
        { NULL, 0 }
 };
@@ -66,7 +59,6 @@ extern char *cache_public;
 extern char *cache_private;
 
 /* mhshowsbr.c */
-extern int serialsw;
 extern int nolist;
 extern char *formsw;
 
@@ -102,7 +94,7 @@ void freects_done(int) NORETURN;
 /*
 ** static prototypes
 */
-static RETSIGTYPE pipeser(int);
+static void pipeser(int);
 
 
 int
@@ -177,13 +169,6 @@ do_cache:
                                checksw = 0;
                                continue;
 
-                       case SERIALSW:
-                               serialsw = 1;
-                               continue;
-                       case NSERIALSW:
-                               serialsw = 0;
-                               continue;
-
                        case PARTSW:
                                if (!(cp = *argp++) || *cp == '-')
                                        adios(NULL, "missing argument to %s",
@@ -405,7 +390,7 @@ do_cache:
 }
 
 
-static RETSIGTYPE
+static void
 pipeser(int i)
 {
        if (i == SIGQUIT) {