o Make call to ufs_extattr_rm() in ufs_extattr_vnode_inactive() use

NULL as the credential, not 0, so as to make it more clear what's
  going on.

Obtained from:	TrustedBSD Project
This commit is contained in:
Robert Watson 2001-01-07 21:38:26 +00:00
parent 7722df0394
commit e33042af13
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70767

View file

@ -870,7 +870,7 @@ ufs_extattr_vnode_inactive(struct vnode *vp, struct proc *p)
for (uele = ump->um_extattr.uepm_list.lh_first; uele != NULL;
uele = uele->uele_entries.le_next)
ufs_extattr_rm(vp, uele->uele_attrname, 0, p);
ufs_extattr_rm(vp, uele->uele_attrname, NULL, p);
ufs_extattr_uepm_unlock(ump, p);
}