diff options
author | Scott Long <scottl@FreeBSD.org> | 2004-03-21 06:43:31 +0000 |
---|---|---|
committer | Scott Long <scottl@FreeBSD.org> | 2004-03-21 06:43:31 +0000 |
commit | b155426aaf5c7474146f2c2975de6e2672d3dd1c (patch) | |
tree | ebe2408ff44aa057b739858ffde70598e7050be6 /comms/ltmdm/files/patch-aa | |
parent | 9ffde2d4a533011ec18afca621e0702e2cc5ae76 (diff) | |
download | ports-b155426aaf5c7474146f2c2975de6e2672d3dd1c.tar.gz ports-b155426aaf5c7474146f2c2975de6e2672d3dd1c.zip |
My last attempt to fix 5.x was incorrect for 4.x. Move a #endif around so
it covers the correct scope.
Notes
Notes:
svn path=/head/; revision=104810
Diffstat (limited to 'comms/ltmdm/files/patch-aa')
-rw-r--r-- | comms/ltmdm/files/patch-aa | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comms/ltmdm/files/patch-aa b/comms/ltmdm/files/patch-aa index 551b36241a5d..675388144e4f 100644 --- a/comms/ltmdm/files/patch-aa +++ b/comms/ltmdm/files/patch-aa @@ -108,13 +108,13 @@ + .d_maj = CDEV_MAJOR, +#endif + .d_kqfilter = ttykqfilter, -+#endif +#if __FreeBSD_version >= 502102 + .d_flags = D_TTY | D_NEEDGIANT, + .d_version = D_VERSION +#else + .d_poll = ttypoll, +#endif ++#endif }; static u_int com_events; /* input chars + weighted output completions */ |