X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhstore.c;h=e491dd9038748139abd6df294f04233db6b510e4;hb=d8c7d4f2c785d35cebd5ea64213a335561a57f7d;hp=4d1ebe099e27e3bcefb10010a4adc7dc8ae4762d;hpb=045101c0a79f43fe566422622f154d5cc0141d8a;p=mmh diff --git a/uip/mhstore.c b/uip/mhstore.c index 4d1ebe0..e491dd9 100644 --- a/uip/mhstore.c +++ b/uip/mhstore.c @@ -2,8 +2,6 @@ /* * mhstore.c -- store the contents of MIME messages * - * $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. @@ -22,10 +20,6 @@ #include #include -#ifdef HAVE_SYS_WAIT_H -# include -#endif - static struct swit switches[] = { #define AUTOSW 0 { "auto", 0 }, @@ -64,7 +58,6 @@ static struct swit switches[] = { /* mhparse.c */ -extern int checksw; extern char *tmp; /* directory to place temp files */ /* mhcachesbr.c */ @@ -95,7 +88,6 @@ CT parse_mime (char *); /* mhmisc.c */ int part_ok (CT, int); int type_ok (CT, int); -void set_endian (void); void flush_errors (void); /* mhstoresbr.c */ @@ -104,12 +96,12 @@ void store_all_messages (CT *); /* mhfree.c */ void free_content (CT); extern CT *cts; -int freects_done (int); +void freects_done (int) NORETURN; /* * static prototypes */ -static RETSIGTYPE pipeser (int); +static void pipeser (int); int @@ -153,10 +145,10 @@ main (int argc, char **argv) snprintf (buf, sizeof(buf), "%s [+folder] [msgs] [switches]", invo_name); print_help (buf, switches, 1); - done (1); + done (0); case VERSIONSW: print_version(invo_name); - done (1); + done (0); case AUTOSW: autosw++; @@ -239,8 +231,6 @@ do_cache: parts[npart] = NULL; types[ntype] = NULL; - set_endian (); - /* * Check if we've specified an additional profile */ @@ -299,7 +289,7 @@ do_cache: adios (NULL, "out of memory"); ctp = cts; - if ((ct = parse_mime (file))); + if ((ct = parse_mime (file))) *ctp++ = ct; } else { /* @@ -385,11 +375,12 @@ do_cache: context_save (); /* save the context file */ } - return done (0); + done (0); + return 1; } -static RETSIGTYPE +static void pipeser (int i) { if (i == SIGQUIT) {