[bug #4302] errno is not always an extern int
[mmh] / uip / mark.c
index 2bbba6d..aeed866 100644 (file)
@@ -5,6 +5,10 @@
  *        -- list sequences in given folder
  *
  * $Id$
+ *
+ * This code is Copyright (c) 2002, by the authors of nmh.  See the
+ * COPYRIGHT file in the root directory of the nmh distribution for
+ * complete copyright information.
  */
 
 #include <h/mh.h>
@@ -36,7 +40,7 @@ static struct swit switches[] = {
 #define VERSIONSW           8
     { "version", 0 },
 #define        HELPSW              9
-    { "help", 4 },
+    { "help", 0 },
 #define        DEBUGSW            10
     { "debug", -5 },
     { NULL, 0 }
@@ -249,7 +253,7 @@ main (int argc, char **argv)
     context_replace (pfolder, folder); /* update current folder         */
     context_save ();                   /* save the context file         */
     folder_free (mp);                  /* free folder/message structure */
-    done (0);
+    return done (0);
 }