summaryrefslogtreecommitdiff
path: root/nfs
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1996-08-01 16:05:44 +0000
committerThomas Bushnell <thomas@gnu.org>1996-08-01 16:05:44 +0000
commit04cecb80cf90f0f62229b8924423f6cd591dd673 (patch)
tree9d1a5c5c95bc49320c2bcbc42acd7182a991e4a4 /nfs
parenta8915162986f63e0c357efd991ff215d785ae3fd (diff)
*** empty log message ***
Diffstat (limited to 'nfs')
-rw-r--r--nfs/ChangeLog5
-rw-r--r--nfs/ops.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/nfs/ChangeLog b/nfs/ChangeLog
index 5a22fdf2..e213507e 100644
--- a/nfs/ChangeLog
+++ b/nfs/ChangeLog
@@ -1,3 +1,8 @@
+Wed Jul 31 13:25:00 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
+
+ * ops.c (netfs_attempt_statfs): Use NFSPROC_STATFS, not SETATTR to
+ do a statfs.
+
Tue Jul 23 19:41:07 1996 Miles Bader <miles@gnu.ai.mit.edu>
* nfs.c (xdr_encode_sattr_times): `struct timespec' now uses a
diff --git a/nfs/ops.c b/nfs/ops.c
index 3ec52e9a..efeded10 100644
--- a/nfs/ops.c
+++ b/nfs/ops.c
@@ -264,7 +264,7 @@ netfs_attempt_statfs (struct netcred *cred, struct node *np,
void *rpcbuf;
error_t err;
- p = nfs_initialize_rpc (NFSPROC_SETATTR, cred, 0, &rpcbuf, np, -1);
+ p = nfs_initialize_rpc (NFSPROC_STATFS, cred, 0, &rpcbuf, np, -1);
p = xdr_encode_fhandle (p, &np->nn->handle);
err = conduct_rpc (&rpcbuf, &p);