diff options
author | 2003-05-07 02:06:31 +0000 | |
---|---|---|
committer | 2003-05-07 02:06:31 +0000 | |
commit | afc6fdcf987fb8f72b629f7ceac60a1c3696f9ce (patch) | |
tree | 8121c89eec54eb2accdfc496737ffe922f387871 | |
parent | Use -h option in tar invocations so that upgrades respect links. (diff) | |
download | wireguard-openbsd-afc6fdcf987fb8f72b629f7ceac60a1c3696f9ce.tar.xz wireguard-openbsd-afc6fdcf987fb8f72b629f7ceac60a1c3696f9ce.zip |
make this at least compile ...
-rw-r--r-- | sys/nfs/nfs_syscalls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfs_syscalls.c b/sys/nfs/nfs_syscalls.c index 2e74641ecf6..5ba2ff009a7 100644 --- a/sys/nfs/nfs_syscalls.c +++ b/sys/nfs/nfs_syscalls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_syscalls.c,v 1.35 2002/10/29 12:47:06 art Exp $ */ +/* $OpenBSD: nfs_syscalls.c,v 1.36 2003/05/07 02:06:31 mickey Exp $ */ /* $NetBSD: nfs_syscalls.c,v 1.19 1996/02/18 11:53:52 fvdl Exp $ */ /* @@ -185,7 +185,7 @@ nfs_clientd(struct nfsmount *nmp, struct ucred *cred, struct nfsd_cargs *ncd, "nqnfstimr", hz / 3); if (error == EINTR || error == ERESTART) { if (vfs_busy(nmp->nm_mountp, LK_EXCLUSIVE, NULL, p) == 0) - dounmount(nmp->nm_mountp, MNT_FORCE, p); + dounmount(nmp->nm_mountp, MNT_FORCE, p, NULL); } } } |