X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhbuild.c;h=5ad0fc10ff84537d60a4a44dda39837c321d93f5;hb=10e03b3fba3e01052baf92c963c46a2a5529b4e0;hp=76626dbba9c0de101ea897e65ee00222e098c24e;hpb=5f2b39344cca1086c975d47b730929d8f1904214;p=mmh diff --git a/uip/mhbuild.c b/uip/mhbuild.c index 76626db..5ad0fc1 100644 --- a/uip/mhbuild.c +++ b/uip/mhbuild.c @@ -117,9 +117,7 @@ main(int argc, char **argv) done = unlink_done; -#ifdef LOCALE setlocale(LC_ALL, ""); -#endif invo_name = mhbasename(argv[0]); /* read user profile/context */ @@ -270,14 +268,14 @@ main(int argc, char **argv) fclose(fp_out); /* Rename composition draft */ - snprintf(buffer, sizeof(buffer), "%s.orig", m_backup(compfile)); + snprintf(buffer, sizeof(buffer), "%s.orig", compfile); if (rename(compfile, buffer) == NOTOK) { - adios(compfile, "unable to rename comp draft %s to", buffer); + adios(buffer, "unable to rename draft %s to", compfile); } /* Rename output file to take its place */ if (rename(outfile, compfile) == NOTOK) { - advise(outfile, "unable to rename output %s to", compfile); + advise(compfile, "unable to rename output %s to", outfile); rename(buffer, compfile); done(1); }