From 247c65c27f99447002ff7fc278959c926c80bc91 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Thu, 20 Sep 2001 03:45:51 +0000 Subject: [PATCH] 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) --- sys/nfsclient/nfs_subs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/nfsclient/nfs_subs.c b/sys/nfsclient/nfs_subs.c index c9511156fd5f..eeac52f9a01d 100644 --- a/sys/nfsclient/nfs_subs.c +++ b/sys/nfsclient/nfs_subs.c @@ -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) {