]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak error message in @exec command
authorEric Bollengier <eric@baculasystems.com>
Fri, 23 May 2014 14:02:53 +0000 (16:02 +0200)
committerKern Sibbald <kern@sibbald.com>
Wed, 23 Jul 2014 15:22:20 +0000 (17:22 +0200)
bacula/src/console/console.c

index b1f147646ebb5ac59fa60409a9175f343aa6dabf..d716e36265a5b298a464b1842428b12dff20d9d3 100644 (file)
@@ -1450,7 +1450,7 @@ static int execcmd(FILE *input, BSOCK *UA_sock)
    if (stat != 0) {
       berrno be;
       be.set_errno(stat);
-     senditf(_("Autochanger error: ERR=%s\n"), be.bstrerror());
+      senditf(_("@exec error: ERR=%s\n"), be.bstrerror());
    }
    return 1;
 }