diff options
author | Martin Blapp <mbr@FreeBSD.org> | 2008-03-31 06:35:29 +0000 |
---|---|---|
committer | Martin Blapp <mbr@FreeBSD.org> | 2008-03-31 06:35:29 +0000 |
commit | 32e5f1e1284ba6f6f005f9f3efdfaefd205626c6 (patch) | |
tree | 9da39f279c109b14d6011249b17f7235dba8b09d /emulators | |
parent | 3c0e6885c54ab7dd39161b7592c69ae61fc47e75 (diff) |
Fix a check which was always true for FreeBSD Releases < 6
Notes
Notes:
svn path=/head/; revision=210203
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/open-vm-tools/files/patch-vmblock-vfsops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/open-vm-tools/files/patch-vmblock-vfsops.c b/emulators/open-vm-tools/files/patch-vmblock-vfsops.c index 5f272a04bc54..9d99158476e8 100644 --- a/emulators/open-vm-tools/files/patch-vmblock-vfsops.c +++ b/emulators/open-vm-tools/files/patch-vmblock-vfsops.c @@ -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); |