diff options
author | 2006-03-31 16:24:58 +0000 | |
---|---|---|
committer | 2006-03-31 16:24:58 +0000 | |
commit | fc13a07622bc6cbaec6108e8c834435c06ac1452 (patch) | |
tree | 7fcf6a53b3856903ef2ee3f0571ee171768321b3 | |
parent | Be careful when accessing the external destination address, as it is not set (diff) | |
download | wireguard-openbsd-fc13a07622bc6cbaec6108e8c834435c06ac1452.tar.xz wireguard-openbsd-fc13a07622bc6cbaec6108e8c834435c06ac1452.zip |
FFS2 dinode pool needs to be defined here too
-rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index 2e8737f0bfb..fd6373581ce 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs_vfsops.c,v 1.87 2006/03/31 13:16:58 pedro Exp $ */ +/* $OpenBSD: ffs_vfsops.c,v 1.88 2006/03/31 16:24:58 pedro Exp $ */ /* $NetBSD: ffs_vfsops.c,v 1.19 1996/02/09 22:22:26 christos Exp $ */ /* @@ -104,6 +104,9 @@ extern u_long nextgennumber; struct pool ffs_ino_pool; struct pool ffs_dinode1_pool; +#ifdef FFS2 +struct pool ffs_dinode2_pool; +#endif int ffs_mountroot(void) |