Oops. Fix a missing indirection level. gcc didn't complain about it on

x86, but did complain about it on alpha (since int and pointer are
different sizes)
This commit is contained in:
Peter Wemm 2001-09-20 03:45:51 +00:00
parent a2f6c865cd
commit 247c65c27f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=83694

View file

@ -898,7 +898,7 @@ nfsm_postop_attr_xx(struct vnode **v, int *f,
t1 = nfsm_dissect_xx((void **)tl, NFSX_UNSIGNED, md, dpos);
if (t1 != 0)
return t1;
*f = fxdr_unsigned(int, *tl);
*f = fxdr_unsigned(int, **tl);
if (f != 0) {
t1 = nfs_loadattrcache(&ttvp, md, dpos, (struct vattr *)0, 1);
if (t1 != 0) {