diff options
Diffstat (limited to 'fs/nfsd/nfs2acl.c')
| -rw-r--r-- | fs/nfsd/nfs2acl.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/nfsd/nfs2acl.c b/fs/nfsd/nfs2acl.c index 12b023a7ab7d..ac54ea60b3f6 100644 --- a/fs/nfsd/nfs2acl.c +++ b/fs/nfsd/nfs2acl.c @@ -54,14 +54,14 @@ static __be32 nfsacld_proc_getacl(struct svc_rqst * rqstp,  	if (resp->mask & (NFS_ACL|NFS_ACLCNT)) {  		acl = get_acl(inode, ACL_TYPE_ACCESS); -		if (IS_ERR(acl)) { -			nfserr = nfserrno(PTR_ERR(acl)); -			goto fail; -		}  		if (acl == NULL) {  			/* Solaris returns the inode's minimum ACL. */  			acl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);  		} +		if (IS_ERR(acl)) { +			nfserr = nfserrno(PTR_ERR(acl)); +			goto fail; +		}  		resp->acl_access = acl;  	}  	if (resp->mask & (NFS_DFACL|NFS_DFACLCNT)) {  |