From 555dd74bff5cd1f3af7c688fd41977fee607c117 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Tue, 4 May 2010 17:22:25 +0200 Subject: [PATCH] Fix #1567 about display of long volume names truncated during restore --- bacula/src/dird/bsr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/dird/bsr.c b/bacula/src/dird/bsr.c index eefce24c7e..c72550f105 100644 --- a/bacula/src/dird/bsr.c +++ b/bacula/src/dird/bsr.c @@ -279,7 +279,7 @@ static void display_vol_info(UAContext *ua, RESTORE_CTX &rx, JobId_t JobId) } else { online = ' '; } - Mmsg(volmsg, "%c%-25.25s %-25.25s %-25.25s", + Mmsg(volmsg, "%c%-25s %-25s %-25s", online, bsr->VolParams[i].VolumeName, bsr->VolParams[i].Storage, Device); add_prompt(ua, volmsg.c_str()); -- 2.39.5