X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Frcvpack.c;h=f9e5bbb62c1e54e022e9ea0c69b8f7673a084784;hb=015e83362f21a061bf268b878693d72309c21e55;hp=410267b6d7dccc460f023a5aa20f6b7cfd5da893;hpb=6c42153ad9362cc676ea66563bf400d7511b3b68;p=mmh diff --git a/uip/rcvpack.c b/uip/rcvpack.c index 410267b..f9e5bbb 100644 --- a/uip/rcvpack.c +++ b/uip/rcvpack.c @@ -2,8 +2,6 @@ /* * 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. @@ -65,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; @@ -103,5 +101,6 @@ main (int argc, char **argv) if (mbx_close (file, md) == NOTOK) done (RCV_MBX); - return done (RCV_MOK); + done (RCV_MOK); + return 1; }