X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Frcvpack.c;h=f9e5bbb62c1e54e022e9ea0c69b8f7673a084784;hb=7428828caf071831ea3caf1efb856c418929acc2;hp=1520cbe147879e6612efc4ae98493495d1f09039;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b;p=mmh diff --git a/uip/rcvpack.c b/uip/rcvpack.c index 1520cbe..f9e5bbb 100644 --- a/uip/rcvpack.c +++ b/uip/rcvpack.c @@ -2,14 +2,16 @@ /* * rcvpack.c -- append message to a file * - * $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 #include #include -#include -#include +#include +#include static struct swit switches[] = { #define MBOXSW 0 @@ -19,7 +21,7 @@ static struct swit switches[] = { #define VERSIONSW 2 { "version", 0 }, #define HELPSW 3 - { "help", 4 }, + { "help", 0 }, { NULL, 0 } }; @@ -61,10 +63,10 @@ main (int argc, char **argv) case HELPSW: snprintf (buf, sizeof(buf), "%s [switches] file", invo_name); print_help (buf, switches, 1); - done (1); + done (0); case VERSIONSW: print_version(invo_name); - done (1); + done (0); case MBOXSW: mbx_style = MBOX_FORMAT; @@ -100,4 +102,5 @@ main (int argc, char **argv) done (RCV_MBX); done (RCV_MOK); + return 1; }