]> git.sur5r.net Git - bacula/bacula/commitdiff
Make error somewhat more understandable.
authorMarco van Wieringen <mvw@planets.elm.net>
Mon, 9 Jan 2012 13:41:11 +0000 (14:41 +0100)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:50:26 +0000 (14:50 +0200)
bacula/src/filed/acl.c

index 64bd5a498bd6adf59a08ddd9282bb2201ec20a2b..e4a50af40d8550f3bfc88e044b66e170baae897c 100644 (file)
@@ -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;
             }