summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorSimon Barner <barner@FreeBSD.org>2005-12-11 21:49:10 +0000
committerSimon Barner <barner@FreeBSD.org>2005-12-11 21:49:10 +0000
commit545069377c65155269fd3c45c19324d299fb753c (patch)
tree720595dc33c6cb16c90516035f0d0d6b5f4c1c59 /net
parent- Add entries for several XSS vulnerabilities in Horde, Kronolith, Nag (diff)
Really fix the build on FreeBSD 7 (after MNT_NODEV was removed)
Inspired by: rodrigc's fix for editors/manedit Reported by: pointyhat via kris
Notes
Notes: svn path=/head/; revision=150912
Diffstat (limited to 'net')
-rw-r--r--net/linneighborhood/files/mntent_compat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/linneighborhood/files/mntent_compat.c b/net/linneighborhood/files/mntent_compat.c
index 62b2eb3b7581..f09b5f322b10 100644
--- a/net/linneighborhood/files/mntent_compat.c
+++ b/net/linneighborhood/files/mntent_compat.c
@@ -37,7 +37,7 @@ struct mntent *getmntent(FILE * filep)
if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_SYNCHRONOUS) getmntent_addopt(&c, "sync");
if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_NOEXEC) getmntent_addopt(&c, "noexec");
if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_NOSUID) getmntent_addopt(&c, "nosuid");
-#if __FreeBSD_version < 700008
+#ifdef MNT_NODEV
if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_NODEV) getmntent_addopt(&c, "nodev");
#endif
if (getmntent_mntbufp[getmntent_mntpos].f_flags & MNT_UNION) getmntent_addopt(&c, "union");