X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fflist.c;h=d2a0490338c4edb55d5ad2094572c336a60da2be;hp=d85ad61c31729fc651817b5d50ad04736698e85f;hb=682962d94b21e120c78a52a8bdcb6aa994330a14;hpb=cff0e16925e7edbd25b8b9d6d4fbdf03e0e60c01 diff --git a/uip/flist.c b/uip/flist.c index d85ad61..d2a0490 100644 --- a/uip/flist.c +++ b/uip/flist.c @@ -91,9 +91,9 @@ static int alphaOrder = FALSE; /* want alphabetical order only */ static int recurse = FALSE; /* show nested folders? */ static int showzero = TRUE; /* show folders even if no messages in seq? */ static int Total = TRUE; /* display info on number of messages in - * sequence found, and total num messages */ + * sequence found, and total num messages */ -static char curfolder[BUFSIZ]; /* name of the current folder */ +static char curfol[BUFSIZ]; /* name of the current folder */ static char *nmhdir; /* base nmh mail directory */ /* @@ -236,7 +236,7 @@ main(int argc, char **argv) } /* get current folder */ - strncpy(curfolder, getcurfol(), sizeof(curfolder)); + strncpy(curfol, getcurfol(), sizeof(curfol)); /* get nmh base directory */ nmhdir = toabsdir("+"); @@ -267,7 +267,8 @@ main(int argc, char **argv) GetFolderOrder(); ScanFolders(); - qsort(folders, nFolders, sizeof(struct Folder), (qsort_comp) CompareFolders); + qsort(folders, nFolders, sizeof(struct Folder), + (qsort_comp) CompareFolders); PrintFolders(); done(0); return 1; @@ -323,9 +324,8 @@ ScanFolders(void) if (numfolders > 0) { /* Update context */ - strncpy(curfolder, foldersToDo[numfolders - 1], - sizeof(curfolder)); - context_replace(pfolder, curfolder);/* update current folder */ + strncpy(curfol, foldersToDo[numfolders - 1], sizeof(curfol)); + context_replace(curfolder, curfol); /* update current folder */ context_save(); /* save the context file */ /* @@ -337,20 +337,14 @@ ScanFolders(void) BuildFolderList(foldersToDo[i], all ? 1 : 0); } else { if (all) { - /* - ** Do the readonly folders - */ + /* Do the readonly folders */ do_readonly_folders(); - /* - ** Now scan the entire nmh directory for folders - */ + /* Now scan the entire nmh directory for folders */ BuildFolderList(".", 0); } else { - /* - ** Else scan current folder - */ - BuildFolderList(curfolder, 0); + /* Else scan current folder */ + BuildFolderList(curfol, 0); } } } @@ -448,7 +442,8 @@ BuildFolderListRecurse(char *dirName, struct stat *s, int searchdepth) if (AddFolder(name, showzero) && (recurse || searchdepth) && st.st_nlink > 2) - BuildFolderListRecurse(name, &st, searchdepth - 1); + BuildFolderListRecurse(name, &st, + searchdepth - 1); } } closedir(dir); @@ -572,7 +567,10 @@ PrintFolders(void) if (folders[i].nSeq[j] > maxseq) maxseq = folders[i].nSeq[j]; - /* check if this sequence is private in any of the folders */ + /* + ** check if this sequence is private in any of + ** the folders + */ if (folders[i].private[j]) has_private = 1; } @@ -583,7 +581,7 @@ PrintFolders(void) for (j = 0; j < numsequences; j++) { if (folders[i].nSeq[j] > 0 || showzero) { /* Add `+' to end of name of current folder */ - if (strcmp(curfolder, folders[i].name)) + if (strcmp(curfol, folders[i].name)) snprintf(tmpname, sizeof(tmpname), "%s", folders[i].name); else