From fbddfae5f21133eab421eb760354d369c1330543 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Tue, 20 Feb 2007 12:26:06 +0000 Subject: [PATCH] ebl fix long message git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@4218 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/dird/ua_cmds.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } -- 2.39.5