X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fgetfolder.c;h=02910c37d6f03df3f313e33cab02b95c4df73f90;hp=11e2b212298c109ea14973d86bd96e6dba467e6b;hb=ced6090a330d3d83d0bce709f756aa3d7d65fea4;hpb=337338b404931f06f0db2119c9e145e8ca5a9860 diff --git a/sbr/getfolder.c b/sbr/getfolder.c index 11e2b21..02910c3 100644 --- a/sbr/getfolder.c +++ b/sbr/getfolder.c @@ -1,10 +1,10 @@ /* - * getfolder.c -- get the current or default folder - * - * 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. - */ +** getfolder.c -- get the current or default folder +** +** 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 @@ -15,19 +15,19 @@ getfolder(int wantcurrent) register char *folder; /* - * If wantcurrent == 1, then try the current folder first - */ + ** If wantcurrent == 1, then try the current folder first + */ if (wantcurrent && (folder = context_find (pfolder)) && *folder != '\0') return folder; /* - * Else try the Inbox profile entry - */ + ** Else try the Inbox profile entry + */ if ((folder = context_find (inbox)) && *folder != '\0') return folder; /* - * Else return compile time default. - */ + ** Else return compile time default. + */ return defaultfolder; }