X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Ffolder_pack.c;h=29ed6874c6f82fe54d4c7f91fe9c6a4b95a8544d;hp=2e321b048d10788619f3f6fb5550c2b8ea473996;hb=ced6090a330d3d83d0bce709f756aa3d7d65fea4;hpb=337338b404931f06f0db2119c9e145e8ca5a9860 diff --git a/sbr/folder_pack.c b/sbr/folder_pack.c index 2e321b0..29ed687 100644 --- a/sbr/folder_pack.c +++ b/sbr/folder_pack.c @@ -1,18 +1,18 @@ /* - * folder_pack.c -- pack (renumber) the messages in a folder - * -- into a contiguous range from 1 to n. - * - * 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. - */ +** folder_pack.c -- pack (renumber) the messages in a folder +** -- into a contiguous range from 1 to n. +** +** 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 /* - * Pack the message in a folder. - * Return -1 if error, else return 0. - */ +** Pack the message in a folder. +** Return -1 if error, else return 0. +*/ int folder_pack (struct msgs **mpp, int verbose) @@ -24,15 +24,15 @@ folder_pack (struct msgs **mpp, int verbose) mp = *mpp; /* - * Just return if folder is empty. - */ + ** Just return if folder is empty. + */ if (mp->nummsg == 0) return 0; /* - * Make sure we have message status space allocated - * for all numbers from 1 to current high message. - */ + ** Make sure we have message status space allocated + ** for all numbers from 1 to current high message. + */ if (mp->lowoff > 1) { if ((mp = folder_realloc (mp, 1, mp->hghmsg))) *mpp = mp; @@ -51,10 +51,11 @@ folder_pack (struct msgs **mpp, int verbose) printf ("message %s becomes %s\n", oldmsg, newmsg); /* - * Invoke the external refile hook for each message being renamed. - * This is done before the file is renamed so that the old message - * file is around for the hook. - */ + ** Invoke the external refile hook for each + ** message being renamed. This is done + ** before the file is renamed so that the + ** old message file is around for the hook. + */ (void)snprintf(oldmsg, sizeof (oldmsg), "%s/%d", mp->foldpath, msgnum); (void)snprintf(newmsg, sizeof (newmsg), "%s/%d", mp->foldpath, hole); @@ -78,7 +79,10 @@ folder_pack (struct msgs **mpp, int verbose) if (msgnum == mp->hghsel) mp->hghsel = hole; - /* mark that sequence information has been modified */ + /* + ** mark that sequence information has + ** been modified + */ mp->msgflags |= SEQMOD; } hole++;