X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fpick.c;h=65a9091ee1e46073efa3545176f9ccd41f8d893c;hb=b465f05ed63a7c310182aa0a32cd29b0e02103a0;hp=d2f72efb768874137525e17cbd170bfabeb71bb9;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b;p=mmh diff --git a/uip/pick.c b/uip/pick.c index d2f72ef..65a9091 100644 --- a/uip/pick.c +++ b/uip/pick.c @@ -3,10 +3,14 @@ * pick.c -- search for messages by content * * $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 /* @@ -64,7 +68,7 @@ static struct swit switches[] = { #define VERSIONSW 22 { "version", 0 }, #define HELPSW 23 - { "help", 4 }, + { "help", 0 }, { NULL, 0 } }; @@ -303,14 +307,15 @@ main (int argc, char **argv) seq_save (mp); /* synchronize message sequences */ context_save (); /* save the context file */ folder_free (mp); /* free folder/message structure */ - done (0); + return done (0); } -void +int done (int status) { if (listsw && status && !isatty (fileno (stdout))) printf ("0\n"); exit (status); + return 1; /* dead code to satisfy the compiler */ }