X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Frefile.c;h=25f762996e163a19bf16e7fe34f5c80808c2f36b;hb=56a34bc502bde807ab722ee5f20d4db2901a5b23;hp=acafbf433a867e08d40193e31d721dd4c29e2810;hpb=174d375bb4b9bcaa0c3f28c422216f68703494a8;p=mmh diff --git a/uip/refile.c b/uip/refile.c index acafbf4..25f7629 100644 --- a/uip/refile.c +++ b/uip/refile.c @@ -3,8 +3,6 @@ * refile.c -- move or link message(s) from a source folder * -- into one or more destination folders * - * $Id$ - * * 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. @@ -163,7 +161,7 @@ main (int argc, char **argv) if (foldp > NFOLDERS) adios (NULL, "only %d folders allowed!", NFOLDERS); folders[foldp++].f_name = - path (cp + 1, *cp == '+' ? TFOLDER : TSUBCWF); + pluspath (cp); } else app_msgarg(&msgs, cp); } @@ -266,7 +264,8 @@ main (int argc, char **argv) context_replace (pfolder, folder); /* update current folder */ context_save (); /* save the context file */ folder_free (mp); /* free folder structure */ - return done (0); + done (0); + return 1; } @@ -278,11 +277,9 @@ main (int argc, char **argv) static void opnfolds (struct st_fold *folders, int nfolders) { - register char *cp; char nmaildir[BUFSIZ]; register struct st_fold *fp, *ep; register struct msgs *mp; - struct stat st; for (fp = folders, ep = folders + nfolders; fp < ep; fp++) { chdir (m_maildir (""));