diff options
author | phk <phk@FreeBSD.org> | 2005-01-24 12:31:06 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2005-01-24 12:31:06 +0000 |
commit | 8dba90be168ab4e2ecb93c48648cdc25ce518be1 (patch) | |
tree | 77150cec4edeae78f2822693f106746ee29e0386 /sys/nfsclient/nfs_node.c | |
parent | d084122f3697505f1422b27c5d64204b1bcf66d4 (diff) | |
download | FreeBSD-src-8dba90be168ab4e2ecb93c48648cdc25ce518be1.zip FreeBSD-src-8dba90be168ab4e2ecb93c48648cdc25ce518be1.tar.gz |
Remove unused cred arg from nfs_vinvalbuf() and many bogus arguments
passed for it.
Diffstat (limited to 'sys/nfsclient/nfs_node.c')
-rw-r--r-- | sys/nfsclient/nfs_node.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/nfsclient/nfs_node.c b/sys/nfsclient/nfs_node.c index fc0cb69..19c1cab 100644 --- a/sys/nfsclient/nfs_node.c +++ b/sys/nfsclient/nfs_node.c @@ -306,7 +306,7 @@ nfs_inactive(struct vop_inactive_args *ap) } else sp = NULL; if (sp) { - (void)nfs_vinvalbuf(ap->a_vp, 0, sp->s_cred, td, 1); + (void)nfs_vinvalbuf(ap->a_vp, 0, td, 1); /* * Remove the silly file that was rename'd earlier */ |