]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix compilation for AIX
authorKern Sibbald <kern@sibbald.com>
Mon, 18 Apr 2016 10:38:23 +0000 (12:38 +0200)
committerKern Sibbald <kern@sibbald.com>
Tue, 31 May 2016 06:21:00 +0000 (08:21 +0200)
bacula/src/filed/acl.c

index f8c3dd889b5424833e3d05078562e5f69bef344f..5285a4c690eb9bbcb515eff658cf2eda6e23f278 100644 (file)
@@ -266,7 +266,7 @@ static bacl_rtn_code aix_backup_acl_streams(JCR *jcr, FF_PKT *ff_pkt)
    acltxtsize = sizeof_pool_memory(jcr->acl_ctx->content);
    if (aclx_printStr(jcr->acl_ctx->content, &acltxtsize, aclbuf,
                      aclsize, type, jcr->last_fname, 0) < 0) {
-      if ((errno == ENOSPC) {
+      if (errno == ENOSPC) {
          /*
           * Our buffer is not big enough, acltxtsize should be updated with the value
           * the aclx_printStr really need. So we increase the buffer and try again.