From 536cfbcd130c6af8073a5d587a7bf828ab1d9145 Mon Sep 17 00:00:00 2001 From: Marco van Wieringen Date: Mon, 9 Jan 2012 14:41:11 +0100 Subject: [PATCH] Make error somewhat more understandable. --- bacula/src/filed/acl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bacula/src/filed/acl.c b/bacula/src/filed/acl.c index 64bd5a498b..e4a50af40d 100644 --- a/bacula/src/filed/acl.c +++ b/bacula/src/filed/acl.c @@ -1809,7 +1809,7 @@ static bacl_exit_code solaris_parse_acl_streams(JCR *jcr, */ if ((acl_enabled & (_ACL_ACLENT_ENABLED | _ACL_ACE_ENABLED)) == 0) { Mmsg1(jcr->errmsg, - _("Trying to restore acl on file \"%s\" on filesystem without aclent acl support\n"), + _("Trying to restore POSIX acl on file \"%s\" on filesystem without aclent acl support\n"), jcr->last_fname); return bacl_exit_error; } @@ -1820,7 +1820,7 @@ static bacl_exit_code solaris_parse_acl_streams(JCR *jcr, */ if ((acl_enabled & _ACL_ACE_ENABLED) == 0) { Mmsg1(jcr->errmsg, - _("Trying to restore acl on file \"%s\" on filesystem without ace acl support\n"), + _("Trying to restore NFSv4 acl on file \"%s\" on filesystem without ace acl support\n"), jcr->last_fname); return bacl_exit_error; } -- 2.39.5