From: Eric Bollengier Date: Tue, 4 May 2010 15:22:25 +0000 (+0200) Subject: Fix #1567 about display of long volume names truncated during restore X-Git-Tag: Release-5.0.3~181 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=38c432b80e4aad26be1e4badf4ae2b2de0378ecd;p=bacula%2Fbacula Fix #1567 about display of long volume names truncated during restore --- 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());