Skip to content

Commit

Permalink
Fix two compile errors on AIX.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Oct 13, 2013
1 parent 4c241e2 commit ffed4b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/findlib/acl.c
Expand Up @@ -398,15 +398,15 @@ static bacl_exit_code aix_parse_acl_streams(JCR *jcr,
retval = bacl_exit_ok;
goto bail_out;
case STREAM_ACL_AIX_AIXC:
if (!aix_query_acl_support(jcr, acl_data->last_fname, ACL_AIXC, &type)) {
if (!aix_query_acl_support(jcr, acl_data, ACL_AIXC, &type)) {
Mmsg1(jcr->errmsg,
_("Trying to restore POSIX acl on file \"%s\" on filesystem without AIXC acl support\n"),
acl_data->last_fname);
goto bail_out;
}
break;
case STREAM_ACL_AIX_NFS4:
if (!aix_query_acl_support(jcr, ACL_NFS4, &type)) {
if (!aix_query_acl_support(jcr, acl_data, ACL_NFS4, &type)) {
Mmsg1(jcr->errmsg,
_("Trying to restore NFSv4 acl on file \"%s\" on filesystem without NFS4 acl support\n"),
acl_data->last_fname);
Expand Down

0 comments on commit ffed4b0

Please sign in to comment.