From: Eric Bollengier Date: Tue, 20 Feb 2007 12:26:06 +0000 (+0000) Subject: ebl fix long message X-Git-Tag: Release-2.2.0~1009 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fbddfae5f21133eab421eb760354d369c1330543;p=bacula%2Fbacula ebl fix long message git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@4218 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/dird/ua_cmds.c b/bacula/src/dird/ua_cmds.c index 9dadde3dba..45ef40ef57 100644 --- a/bacula/src/dird/ua_cmds.c +++ b/bacula/src/dird/ua_cmds.c @@ -545,7 +545,9 @@ bool set_pooldbr_recyclepoolid(JCR *jcr, B_DB *db, POOL_DBR *pr, POOL *pool) pr->RecyclePoolId = rpool.PoolId; } else { Jmsg(jcr, M_WARNING, 0, - _("Can't set %s RecyclePool to %s, %s is not in database, try to update it with 'update pool=%s'\n"),pool->name(),rpool.Name, rpool.Name,pool->name()); + _("Can't set %s RecyclePool to %s, %s is not in database.\n" \ + "Try to update it with 'update pool=%s'\n"), + pool->name(), rpool.Name, rpool.Name,pool->name()); ret = false; }