From: Eric Bollengier Date: Fri, 23 May 2014 14:02:53 +0000 (+0200) Subject: Tweak error message in @exec command X-Git-Tag: Release-7.0.5~22 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=de454aef598a9124142135ac1c8696a359baf3fe;p=bacula%2Fbacula Tweak error message in @exec command --- diff --git a/bacula/src/console/console.c b/bacula/src/console/console.c index b1f147646e..d716e36265 100644 --- a/bacula/src/console/console.c +++ b/bacula/src/console/console.c @@ -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; }