From e7ddb32d86c2d7ceb69f71e91a2435bb1eb6feb2 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Tue, 18 Jan 2022 16:22:23 +0100 Subject: [PATCH] Fix #8719 About segfault after an incorrect copy job --- bacula/src/dird/mac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/dird/mac.c b/bacula/src/dird/mac.c index b4c050693..4e0181299 100644 --- a/bacula/src/dird/mac.c +++ b/bacula/src/dird/mac.c @@ -870,7 +870,7 @@ void mac_cleanup(JCR *jcr, int TermCode, int writeTermCode) terminate_sd_msg_chan_thread(wjcr); break; default: - Mmsg(term_msg, _("Inappropriate %s term code")); + Mmsg(term_msg, _("Inappropriate %c term code"), jcr->JobStatus); break; } -- 2.47.3