X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhpath.c;h=b658f298455b3aae1f9cdc24d1a828cd3d6886c5;hp=aa38bbea7a413f68ca216ae0894807315178193d;hb=ced6090a330d3d83d0bce709f756aa3d7d65fea4;hpb=337338b404931f06f0db2119c9e145e8ca5a9860 diff --git a/uip/mhpath.c b/uip/mhpath.c index aa38bbe..b658f29 100644 --- a/uip/mhpath.c +++ b/uip/mhpath.c @@ -1,10 +1,10 @@ /* - * mhpath.c -- print full pathnames of nmh messages and folders - * - * 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. - */ +** mhpath.c -- print full pathnames of nmh messages and folders +** +** 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 #include @@ -39,8 +39,8 @@ main(int argc, char **argv) argp = arguments; /* - * Parse arguments - */ + ** Parse arguments + */ while ((cp = *argp++)) { if (*cp == '-') { switch (smatch (++cp, switches)) { @@ -90,11 +90,11 @@ main(int argc, char **argv) adios (NULL, "unable to read folder %s", folder); /* - * We need to make sure there is message status space - * for all the message numbers from 1 to "new" since - * mhpath can select empty slots. If we are adding - * space at the end, we go ahead and add 10 slots. - */ + ** We need to make sure there is message status space + ** for all the message numbers from 1 to "new" since + ** mhpath can select empty slots. If we are adding + ** space at the end, we go ahead and add 10 slots. + */ if (mp->hghmsg >= mp->hghoff) { if (!(mp = folder_realloc (mp, 1, mp->hghmsg + 10))) adios (NULL, "unable to allocate folder storage");