summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2000-08-07 17:12:16 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2000-08-07 17:12:16 +0000
commit28964df76951308c5c2976d70d665b5346c07c33 (patch)
treeb6e25347dafe22729ddc73a0fa86c4b25d5b27c9 /sys
parent3b2cd6146dc7112a15c266fc6a7a17ef346c34a4 (diff)
fix obvious error, spotted by ericj
Diffstat (limited to 'sys')
-rw-r--r--sys/nfs/nfs_socket.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/nfs/nfs_socket.c b/sys/nfs/nfs_socket.c
index 61325750224..0b20776aae5 100644
--- a/sys/nfs/nfs_socket.c
+++ b/sys/nfs/nfs_socket.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nfs_socket.c,v 1.17 2000/06/26 22:48:14 art Exp $ */
+/* $OpenBSD: nfs_socket.c,v 1.18 2000/08/07 17:12:15 deraadt Exp $ */
/* $NetBSD: nfs_socket.c,v 1.27 1996/04/15 20:20:00 thorpej Exp $ */
/*
@@ -1231,9 +1231,9 @@ nfs_rephead(siz, nd, slp, err, cache, frev, mrq, mbp, bposp)
*tl = 0;
}
}
- *mrq = mreq;
if (mrq != NULL)
- *mbp = mb;
+ *mrq = mreq;
+ *mbp = mb;
*bposp = bpos;
if (err != 0 && err != NFSERR_RETVOID)
nfsstats.srvrpc_errs++;