X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fsortm.c;h=0d8e39da14339d8c2a986e7079ca1699a64e27aa;hb=246ca516a0f7b870316116bc184347b0fb2bc00b;hp=5132c1f50e497b1c96f0adde78e96c5434c987fc;hpb=d39e2c447b0d163a5a63f480b23d06edb7a73aa0;p=mmh diff --git a/uip/sortm.c b/uip/sortm.c index 5132c1f..0d8e39d 100644 --- a/uip/sortm.c +++ b/uip/sortm.c @@ -277,7 +277,7 @@ main(int argc, char **argv) rename_msgs(mp, dlist); - context_replace(pfolder, folder); /* update current folder */ + context_replace(curfolder, folder); /* update current folder */ seq_save(mp); /* synchronize message sequences */ context_save(); /* save the context file */ folder_free(mp); /* free folder/message structure */ @@ -562,8 +562,8 @@ rename_msgs(struct msgs *mp, struct smsg **mlist) ** messages in the folder. */ - (void)snprintf(f1, sizeof (f1), "%s/%d", mp->foldpath, old); - (void)snprintf(newbuf, sizeof (newbuf), "%s/%d", + snprintf(f1, sizeof (f1), "%s/%d", mp->foldpath, old); + snprintf(newbuf, sizeof (newbuf), "%s/%d", mp->foldpath, mp->hghmsg + 1); ext_hook("ref-hook", f1, newbuf); @@ -579,7 +579,7 @@ rename_msgs(struct msgs *mp, struct smsg **mlist) ** to the real place. */ - (void)snprintf(f1, sizeof (f1), "%s/%d", mp->foldpath, new); + snprintf(f1, sizeof (f1), "%s/%d", mp->foldpath, new); ext_hook("ref-hook", newbuf, f1); if (rename(tmpfil, m_name(new)) == NOTOK)