mhlist: Always display the column header (removed -headers).
[mmh] / uip / mhlistsbr.c
index c2db987..dc85bcc 100644 (file)
@@ -25,7 +25,7 @@ void flush_errors(void);
 /*
 ** prototypes
 */
-void list_all_messages(CT *, int, int, int);
+void list_all_messages(CT *, int, int);
 int list_switch(CT, int, int, int);
 int list_content(CT, int, int, int);
 
@@ -57,19 +57,15 @@ static int list_encoding(CT);
 ** Top level entry point to list group of messages
 */
 void
-list_all_messages(CT *cts, int headers, int verbose, int debug)
+list_all_messages(CT *cts, int verbose, int debug)
 {
        CT ct, *ctp;
 
-       if (headers)
-               printf(LSTFMT1, "msg", "part", "type/subtype", "size",
-                               "description");
-
+       printf(LSTFMT1, "msg", "part", "type/subtype", "size", "description");
        for (ctp = cts; *ctp; ctp++) {
                ct = *ctp;
                list_single_message(ct, verbose, debug);
        }
-
        flush_errors();
 }