1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-02 11:09:29 +00:00

Fix a check which was always true for FreeBSD Releases < 6

This commit is contained in:
Martin Blapp 2008-03-31 06:35:29 +00:00
parent 3c0e6885c5
commit 32e5f1e128
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=210203

View File

@ -5,7 +5,7 @@
MNT_ILOCK(mp);
mp->mnt_flag |= lowerrootvp->v_mount->mnt_flag & MNT_LOCAL;
-#if BSD_VERSION >= 60
+#if __FreeBSD_version >= 60
+#if __FreeBSD_version >= 600000
mp->mnt_kern_flag |= lowerrootvp->v_mount->mnt_kern_flag & MNTK_MPSAFE;
#endif
MNT_IUNLOCK(mp);