X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fflist.c;h=68acabb11f3ca5d7f2eae0cc05cfe67062f68c1c;hp=ac680806ee8e5a4c0f4175f918a2d3702bfe4780;hb=f16ae6eedeacce086d513e10461938c1650e265e;hpb=ea21fe2c4bd23c639bef251398fae809875732ec diff --git a/uip/flist.c b/uip/flist.c index ac68080..68acabb 100644 --- a/uip/flist.c +++ b/uip/flist.c @@ -16,6 +16,12 @@ #include #include +#include +#include +#include +#include +#include +#include /* ** We allocate space to record the names of folders @@ -30,23 +36,23 @@ static struct swit switches[] = { #define ALLSW 1 { "all", 0 }, #define NOALLSW 2 - { "noall", 0 }, + { "noall", 2 }, #define RECURSE 3 { "recurse", 0 }, #define NORECURSE 4 - { "norecurse", 0 }, + { "norecurse", 2 }, #define SHOWZERO 5 { "showzero", 0 }, #define NOSHOWZERO 6 - { "noshowzero", 0 }, + { "noshowzero", 2 }, #define ALPHASW 7 { "alpha", 0 }, #define NOALPHASW 8 - { "noalpha", 0 }, + { "noalpha", 2 }, #define FASTSW 9 { "fast", 0 }, #define NOFASTSW 10 - { "nofast", 0 }, + { "nofast", 2 }, #define VERSIONSW 11 { "Version", 0 }, #define HELPSW 12 @@ -118,9 +124,7 @@ main(int argc, char **argv) char **arguments; char buf[BUFSIZ]; -#ifdef LOCALE setlocale(LC_ALL, ""); -#endif invo_name = mhbasename(argv[0]); /* read user profile/context */ @@ -151,26 +155,27 @@ main(int argc, char **argv) switch (smatch(++cp, switches)) { case AMBIGSW: ambigsw(cp, switches); - done(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 [+folder1 [+folder2 ...]][switches]", invo_name); print_help(buf, switches, 1); - done(1); + exit(argc == 2 ? EX_OK : EX_USAGE); + case VERSIONSW: print_version(invo_name); - done(1); + exit(argc == 2 ? EX_OK : EX_USAGE); case SEQSW: if (!(cp = *argp++) || *cp == '-') - adios(NULL, "missing argument to %s", + adios(EX_USAGE, NULL, "missing argument to %s", argp[-2]); /* check if too many sequences specified */ if (numsequences >= NUMATTRS) - adios(NULL, "too many sequences (more than %d) specified", NUMATTRS); + adios(EX_USAGE, NULL, "too many sequences (more than %d) specified", NUMATTRS); sequencesToDo[numsequences++] = cp; break; @@ -241,7 +246,7 @@ main(int argc, char **argv) if ((cp = context_find(usequence))) { if (!*cp) { - adios(NULL, "profile entry %s set, but empty, and no sequence given", usequence); + adios(EX_CONFIG, NULL, "profile entry %s set, but empty, and no sequence given", usequence); } } else { cp = seq_unseen; /* use default */ @@ -250,7 +255,7 @@ main(int argc, char **argv) ap = brkstring(dp, " ", "\n"); for (; ap && *ap; ap++) { if (numsequences >= NUMATTRS) { - adios(NULL, "too many sequences (more than %d) in %s profile entry", NUMATTRS, usequence); + adios(EX_USAGE, NULL, "too many sequences (more than %d) in %s profile entry", NUMATTRS, usequence); } else { sequencesToDo[numsequences++] = *ap; } @@ -262,8 +267,7 @@ main(int argc, char **argv) qsort(folders, nFolders, sizeof(struct Folder), (qsort_comp) CompareFolders); PrintFolders(); - done(0); - return 1; + return EX_OK; } /* @@ -312,7 +316,7 @@ ScanFolders(void) * change directory to base of nmh directory */ if (chdir(nmhdir) == NOTOK) - adios(nmhdir, "unable to change directory to"); + adios(EX_OSERR, nmhdir, "unable to change directory to"); if (numfolders > 0) { /* Update context */ @@ -398,7 +402,7 @@ BuildFolderListRecurse(char *dirName, struct stat *s, int searchdepth) nlinks = s->st_nlink; if (!(dir = opendir(dirName))) - adios(dirName, "can't open directory"); + adios(EX_IOERR, dirName, "can't open directory"); /* ** A hack so that we don't see a @@ -673,7 +677,7 @@ do_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);