mhbuild: Fixed order of file names in error messages.
authormarkus schnalke <meillo@marmaro.de>
Thu, 28 Jun 2012 21:45:01 +0000 (23:45 +0200)
committermarkus schnalke <meillo@marmaro.de>
Thu, 28 Jun 2012 21:45:01 +0000 (23:45 +0200)
(The argument order is: rename(src, dest) and admonish("foo", "%s", "bar")
produces: ``bar foo''.)

uip/mhbuild.c

index 113ff38..b22c137 100644 (file)
@@ -270,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);
        }