X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhparam.c;h=575c7a7a8a1ef8dda45a0375809a6b9a645b97cd;hp=b18ddb4a072b382af5eb83940e63e65f5a97c901;hb=714b5c530ece27ea2835a313013f5b770163403c;hpb=18017df38ebb626f6eed6f339641fd1298c326e7 diff --git a/uip/mhparam.c b/uip/mhparam.c index b18ddb4..575c7a7 100644 --- a/uip/mhparam.c +++ b/uip/mhparam.c @@ -1,13 +1,13 @@ /* - * mhparam.c -- print mh_profile values - * - * Originally contributed by - * Jeffrey C Honig - * - * 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. - */ +** mhparam.c -- print mh_profile values +** +** Originally contributed by +** Jeffrey C Honig +** +** 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. +*/ #include @@ -64,13 +64,14 @@ static struct proc procs [] = { { "libdir", &mhlibdir }, { "backup-prefix", &backup_prefix }, { "altmsg-link", &altmsglink }, + { "draft-folder", &draftfolder }, { NULL, NULL }, }; /* - * static prototypes - */ +** static prototypes +*/ static char *p_find(char *); @@ -83,31 +84,30 @@ main(int argc, char **argv) char *cp, buf[BUFSIZ], **argp; char **arguments, *comps[MAXARGS]; - invo_name = r1bindex (argv[0], '/'); + invo_name = r1bindex(argv[0], '/'); /* read user profile/context */ context_read(); - arguments = getarguments (invo_name, argc, argv, 1); + arguments = getarguments(invo_name, argc, argv, 1); argp = arguments; while ((cp = *argp++)) { if (*cp == '-') { - switch (smatch (++cp, switches)) { + switch (smatch(++cp, switches)) { case AMBIGSW: - ambigsw (cp, switches); - done (1); + ambigsw(cp, switches); + done(1); case UNKWNSW: - adios (NULL, "-%s unknown", cp); + adios(NULL, "-%s unknown", cp); case HELPSW: - snprintf (buf, sizeof(buf), "%s [profile-components] [switches]", - invo_name); - print_help (buf, switches, 1); - done (1); + snprintf(buf, sizeof(buf), "%s [profile-components] [switches]", invo_name); + print_help(buf, switches, 1); + done(1); case VERSIONSW: print_version(invo_name); - done (1); + done(1); case COMPSW: components = 1; @@ -137,7 +137,7 @@ main(int argc, char **argv) if (components >= 0) advise(NULL, "-%scomponents ignored with -all", - components ? "" : "no"); + components ? "" : "no"); /* print all entries in context/profile list */ for (np = m_defs; np; np = np->n_next) @@ -147,12 +147,13 @@ main(int argc, char **argv) struct proc *ps; /* - * Print the current value of everything in - * procs array. This will show their current - * value (as determined after context is read). - */ + ** Print the current value of everything in + ** procs array. This will show their current + ** value (as determined after context is read). + */ for (ps = procs; ps->p_name; ps++) - printf ("%s: %s\n", ps->p_name, *ps->p_field ? *ps->p_field : ""); + printf("%s: %s\n", ps->p_name, + *ps->p_field ? *ps->p_field : ""); } else { if (components < 0) @@ -161,9 +162,9 @@ main(int argc, char **argv) for (i = 0; i < compp; i++) { register char *value; - value = context_find (comps[i]); + value = context_find(comps[i]); if (!value) - value = p_find (comps[i]); + value = p_find(comps[i]); if (value) { if (components) printf("%s: ", comps[i]); @@ -174,7 +175,7 @@ main(int argc, char **argv) } } - done (missed); + done(missed); return 1; } @@ -185,7 +186,7 @@ p_find(char *str) struct proc *ps; for (ps = procs; ps->p_name; ps++) - if (!mh_strcasecmp (ps->p_name, str)) + if (!mh_strcasecmp(ps->p_name, str)) return (*ps->p_field); return NULL;