X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Ffolder.c;h=92ee49624e18849800b1dfe324860bdba807c6aa;hp=8638151edcb985aa3230e90d8421d47aeb8d139d;hb=fede6e42d81ce34fd5c1bbe7fb2757b281c2573a;hpb=ccf4f175ef4c4e7522f9510a4a1149c15d810dd9 diff --git a/uip/folder.c b/uip/folder.c index 8638151..92ee496 100644 --- a/uip/folder.c +++ b/uip/folder.c @@ -136,17 +136,18 @@ main(int argc, char **argv) switch (smatch(++cp, switches)) { case AMBIGSW: ambigsw(cp, switches); - done(1); + /*sysexits.h EX_USAGE*/ + exit(1); case UNKWNSW: adios(NULL, "-%s unknown", cp); case HELPSW: snprintf(buf, sizeof(buf), "%s [+folder] [msg] [switches]", invo_name); print_help(buf, switches, 1); - done(1); + exit(0); case VERSIONSW: print_version(invo_name); - done(1); + exit(0); case ALLSW: all = 1; @@ -314,8 +315,9 @@ main(int argc, char **argv) } printf("\n"); - if (!printsw) - done(0); + if (!printsw) { + exit(0); + } } /* Allocate initial space to record folder information */ @@ -379,8 +381,7 @@ main(int argc, char **argv) print_folders(); context_save(); - done(0); - return 1; + return 0; } static int @@ -422,8 +423,9 @@ get_folder_info_body(char *fold, char *msg, boolean *crawl_children) retval = 0; if (fpack) { - if (folder_pack(&mp, fverb) == -1) - done(1); + if (folder_pack(&mp, fverb) == -1) { + exit(0); + } seq_save(mp); /* synchronize the sequences */ context_save(); /* save the context file */ }