summaryrefslogtreecommitdiffstats
path: root/sys/nfsclient
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2001-09-20 03:45:51 +0000
committerpeter <peter@FreeBSD.org>2001-09-20 03:45:51 +0000
commitafb77dde2c97a893f496efbe1b972b695c919963 (patch)
tree6dbd5e9ece81cb4a2dce6bede88712658a34737d /sys/nfsclient
parent2602b5e7487c1e1dd7cb646c38765f01b87d373d (diff)
downloadFreeBSD-src-afb77dde2c97a893f496efbe1b972b695c919963.zip
FreeBSD-src-afb77dde2c97a893f496efbe1b972b695c919963.tar.gz
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)
Diffstat (limited to 'sys/nfsclient')
-rw-r--r--sys/nfsclient/nfs_subs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/nfsclient/nfs_subs.c b/sys/nfsclient/nfs_subs.c
index c951115..eeac52f 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) {
OpenPOWER on IntegriCloud