X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fdist.c;h=47d7ed507fe6e21090c865996052a523769d67d0;hb=2823e13f67239db7deb7274f3a47bfbff56c7c64;hp=d00f686f3a0c282239f6b0b8c20b8595b297fe06;hpb=5f2b39344cca1086c975d47b730929d8f1904214;p=mmh diff --git a/uip/dist.c b/uip/dist.c index d00f686..47d7ed5 100644 --- a/uip/dist.c +++ b/uip/dist.c @@ -41,9 +41,7 @@ main(int argc, char **argv) struct msgs *mp = NULL; char *fmtstr; -#ifdef LOCALE setlocale(LC_ALL, ""); -#endif invo_name = mhbasename(argv[0]); /* read user profile/context */ @@ -57,17 +55,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 ANNOSW: anot++; @@ -138,7 +137,8 @@ main(int argc, char **argv) /* parse the message range/sequence/name and set SELECTED */ if (!m_convert(mp, msg)) - done(1); + /* sysexits.h EX_USAGE*/ + exit(1); seq_setprev(mp); if (mp->numsel > 1) @@ -154,6 +154,6 @@ main(int argc, char **argv) context_save(); what_now(ed, NOUSE, drft, msgnam, 1, mp, anot ? "Resent" : NULL, cwd); - done(1); + /*sysexits.h EX_SOFTWARE*/ return 1; }