X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhbuild.c;h=b22c137dad0ecc2d0ff294ddb040466dacca248f;hp=12e654897dd30147b3383d95d1d38afa97f710ef;hb=b5e6b7321a4aa439a32ae448e43343568fa13cbe;hpb=32b2354dbaf4bf934936eb5b102a4a3d2fdd209a diff --git a/uip/mhbuild.c b/uip/mhbuild.c index 12e6548..b22c137 100644 --- a/uip/mhbuild.c +++ b/uip/mhbuild.c @@ -32,7 +32,7 @@ static struct swit switches[] = { #define VERBSW 0 { "verbose", 0 }, #define NVERBSW 1 - { "noverbose", 0 }, + { "noverbose", 2 }, #define VERSIONSW 2 { "Version", 0 }, #define HELPSW 3 @@ -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 */ @@ -272,12 +270,12 @@ main(int argc, char **argv) /* Rename composition draft */ snprintf(buffer, sizeof(buffer), "%s.orig", m_backup(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); }