From 024c3c0a980211eced11b3ce1f2df25bf6affb04 Mon Sep 17 00:00:00 2001 From: Dan Langille Date: Tue, 26 Sep 2006 19:22:52 +0000 Subject: [PATCH] Improve the old "Filesystem change prohibited" message to remove possible confusion. Instead, say "%s is a different filesystem". We need to follow up with documentation changes, and explain how this situation arises. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3507 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/filed/backup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bacula/src/filed/backup.c b/bacula/src/filed/backup.c index 282e2296a7..f44fdda547 100644 --- a/bacula/src/filed/backup.c +++ b/bacula/src/filed/backup.c @@ -240,8 +240,8 @@ static int save_file(FF_PKT *ff_pkt, void *vjcr, bool top_level) case FT_NOFSCHG: /* Suppress message for /dev filesystems */ if (strncmp(ff_pkt->fname, "/dev/", 5) != 0) { - Jmsg(jcr, M_INFO, 1, _(" Filesystem change prohibited. Will not descend from %s into %s\n"), - ff_pkt->top_fname, ff_pkt->fname); + Jmsg(jcr, M_INFO, 1, _(" %s is a different filesystem. Will not descend from %s into %s\n"), + ff_pkt->fname, ff_pkt->top_fname, ff_pkt->fname); } ff_pkt->type = FT_DIREND; /* Backup only the directory entry */ break; -- 2.39.5