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:
parent
4edce7b654
commit
bc733134b8
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user