From a1c305628a2e26c4653917ecfdc39f7779eeaf93 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Fri, 3 Sep 2010 17:42:05 +0200 Subject: [PATCH] Add quotes around resource name in status output --- bacula/src/dird/ua_status.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bacula/src/dird/ua_status.c b/bacula/src/dird/ua_status.c index b6d2b0d934..b1483f8c28 100644 --- a/bacula/src/dird/ua_status.c +++ b/bacula/src/dird/ua_status.c @@ -678,9 +678,9 @@ static void list_running_jobs(UAContext *ua) case JS_WaitSD: emsg = (char *) get_pool_memory(PM_FNAME); if (jcr->wstore) { - Mmsg(emsg, _("is waiting on Storage %s"), jcr->wstore->name()); + Mmsg(emsg, _("is waiting on Storage \"%s\""), jcr->wstore->name()); } else if (jcr->rstore) { - Mmsg(emsg, _("is waiting on Storage %s"), jcr->rstore->name()); + Mmsg(emsg, _("is waiting on Storage \"%s\""), jcr->rstore->name()); } else { Mmsg(emsg, _("is waiting on Storage")); } -- 2.39.5