svn commit: r206850 - stable/8/sys/ufs/ufs
Edward Tomasz Napierala
trasz at FreeBSD.org
Mon Apr 19 18:22:21 UTC 2010
Author: trasz
Date: Mon Apr 19 18:22:21 2010
New Revision: 206850
URL: http://svn.freebsd.org/changeset/base/206850
Log:
MFC r202971:
Return proper error code.
Found with: clang
Modified:
stable/8/sys/ufs/ufs/ufs_acl.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/dev/uath/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/xen/xenpci/ (props changed)
Modified: stable/8/sys/ufs/ufs/ufs_acl.c
==============================================================================
--- stable/8/sys/ufs/ufs/ufs_acl.c Mon Apr 19 18:19:59 2010 (r206849)
+++ stable/8/sys/ufs/ufs/ufs_acl.c Mon Apr 19 18:22:21 2010 (r206850)
@@ -465,7 +465,7 @@ ufs_setacl_nfs4(struct vop_setacl_args *
error = ufs_setacl_nfs4_internal(ap->a_vp, ap->a_aclp, ap->a_td);
- return (0);
+ return (error);
}
/*
More information about the svn-src-stable-8
mailing list