From: Marco van Wieringen Date: Mon, 9 Jan 2012 13:41:11 +0000 (+0100) Subject: Make error somewhat more understandable. X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6bdb42d08a29828ab053631b4c311a156ca27e99;p=bacula%2Fbacula Make error somewhat more understandable. --- 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; }