X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Ffolder.c;h=4ffb9f5b18622ee6f7eb93323e0682244a3749b5;hp=84b43650b77a3a3b4f37fc331651655ed95db00b;hb=b4987f510fb3494bfc5b11fc92d2047cdb51642b;hpb=2abb9a7cfb0930e27062088734d306e7d78e4cc2 diff --git a/uip/folder.c b/uip/folder.c index 84b4365..4ffb9f5 100644 --- a/uip/folder.c +++ b/uip/folder.c @@ -14,6 +14,7 @@ #include #include #include +#include static struct swit switches[] = { #define ALLSW 0 @@ -138,18 +139,17 @@ main(int argc, char **argv) switch (smatch(++cp, switches)) { case AMBIGSW: ambigsw(cp, switches); - /*sysexits.h EX_USAGE*/ - exit(1); + exit(EX_USAGE); case UNKWNSW: - adios(NULL, "-%s unknown", cp); + adios(EX_USAGE, NULL, "-%s unknown", cp); case HELPSW: snprintf(buf, sizeof(buf), "%s [+folder] [msg] [switches]", invo_name); print_help(buf, switches, 1); - exit(0); + exit(argc == 2 ? EX_OK : EX_USAGE); case VERSIONSW: print_version(invo_name); - exit(0); + exit(argc == 2 ? EX_OK : EX_USAGE); case ALLSW: all = 1; @@ -229,12 +229,12 @@ main(int argc, char **argv) } if (*cp == '+' || *cp == '@') { if (argfolder) - adios(NULL, "only one folder at a time!"); + adios(EX_USAGE, NULL, "only one folder at a time!"); else argfolder = getcpy(expandfol(cp)); } else { if (msg) - adios(NULL, "only one (current) message at a time!"); + adios(EX_USAGE, NULL, "only one (current) message at a time!"); else msg = cp; } @@ -259,7 +259,7 @@ main(int argc, char **argv) ap = brkstring(dp, " ", "\n"); argfolder = getcpy(*ap++); } else { - adios(NULL, "no other folder"); + adios(EX_USAGE, NULL, "no other folder"); } for (cp = getcpy(getcurfol()); *ap; ap++) cp = add(*ap, add(" ", cp)); @@ -276,13 +276,13 @@ main(int argc, char **argv) /* Popping a folder off of the folder stack */ if (popsw) { if (argfolder) - adios(NULL, "sorry, no folders allowed with -pop"); + adios(EX_USAGE, NULL, "sorry, no folders allowed with -pop"); if ((cp = context_find(stack))) { dp = getcpy(cp); ap = brkstring(dp, " ", "\n"); argfolder = getcpy(*ap++); } else { - adios(NULL, "folder stack empty"); + adios(EX_DATAERR, NULL, "folder stack empty"); } if (*ap) { /* if there's anything left in the stack */ @@ -299,7 +299,7 @@ main(int argc, char **argv) if (pushsw || popsw) { cp = toabsdir(argfolder); if (access(cp, F_OK) == NOTOK) - adios(cp, "unable to find folder"); + adios(EX_DATAERR, cp, "unable to find folder"); /* update current folder */ context_replace(curfolder, argfolder); context_save(); /* save the context file */ @@ -318,7 +318,7 @@ main(int argc, char **argv) printf("\n"); if (!printsw) { - exit(0); + exit(EX_OK); } } @@ -329,16 +329,17 @@ main(int argc, char **argv) /* ** Scan the folders */ + /* + ** change directory to base of nmh directory for + ** crawl_folders + */ + if (chdir(nmhdir) == NOTOK) { + adios(EX_OSERR, nmhdir, "unable to change directory to"); + } if (all || ftotal > 0) { /* ** If no folder is given, do them all */ - /* - ** change directory to base of nmh directory for - ** crawl_folders - */ - if (chdir(nmhdir) == NOTOK) - adios(nmhdir, "unable to change directory to"); if (!argfolder) { if (msg) admonish(NULL, "no folder given for message %s", msg); @@ -383,7 +384,7 @@ main(int argc, char **argv) print_folders(); context_save(); - return 0; + return EX_OK; } static int @@ -426,7 +427,7 @@ get_folder_info_body(char *fold, char *msg, boolean *crawl_children) if (fpack) { if (folder_pack(&mp, fverb) == -1) { - exit(0); + exit(EX_OK); } seq_save(mp); /* synchronize the sequences */ context_save(); /* save the context file */ @@ -630,7 +631,7 @@ readonly_folders(void) { int atrlen; char atrcur[BUFSIZ]; - register struct node *np; + struct node *np; snprintf(atrcur, sizeof(atrcur), "atr-%s-", seq_cur); atrlen = strlen(atrcur);