diff options
author | 2007-04-10 11:23:38 +0000 | |
---|---|---|
committer | 2007-04-10 11:23:38 +0000 | |
commit | 562c07c033912ea6009f4bd4272b9462ffda43ae (patch) | |
tree | 9bf7daa2d41480d3c2ad3c8d3ca3529a7d16fb21 | |
parent | Fix yet another vnode leak. If relookup() succeeds, we no longer need (diff) | |
download | wireguard-openbsd-562c07c033912ea6009f4bd4272b9462ffda43ae.tar.xz wireguard-openbsd-562c07c033912ea6009f4bd4272b9462ffda43ae.zip |
No need to use umount -f now that both cases of vnode leakage were fixed
-rw-r--r-- | regress/sys/ffs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/sys/ffs/Makefile b/regress/sys/ffs/Makefile index 8a01486ad38..493f2c4adcb 100644 --- a/regress/sys/ffs/Makefile +++ b/regress/sys/ffs/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 2007/03/30 19:28:25 pedro Exp $ +# $OpenBSD: Makefile,v 1.3 2007/04/10 11:23:38 pedro Exp $ PROG= fstest @@ -9,7 +9,7 @@ mount: mount /dev/svnd0c /mnt clean: - -umount -f /mnt + -umount /mnt -vnconfig -u svnd0 -vnconfig -u svnd1 -rm -f ${.CURDIR}/fakeobj |