Minimal change for #if __FreeBSD__ >= 3 to check __FreeBSD_version instead.

This commit is contained in:
Peter Wemm 1998-09-24 16:00:30 +00:00
parent e266594c25
commit 05209199cf
2 changed files with 4 additions and 4 deletions

View file

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: if_tx.c,v 1.13 1998/07/04 08:02:46 semenu Exp $
* $Id: if_tx.c,v 1.14 1998/07/13 09:53:07 bde Exp $
*
*/
@ -166,7 +166,7 @@ epic_ifioctl __P((
case SIOCDELMULTI:
/* Update out multicast list */
#if defined(__FreeBSD__) && __FreeBSD__ >= 3
#if defined(__FreeBSD__) && __FreeBSD_version >= 300000
epic_set_mc_table(sc);
error = 0;
#else

View file

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: if_tx.c,v 1.13 1998/07/04 08:02:46 semenu Exp $
* $Id: if_tx.c,v 1.14 1998/07/13 09:53:07 bde Exp $
*
*/
@ -166,7 +166,7 @@ epic_ifioctl __P((
case SIOCDELMULTI:
/* Update out multicast list */
#if defined(__FreeBSD__) && __FreeBSD__ >= 3
#if defined(__FreeBSD__) && __FreeBSD_version >= 300000
epic_set_mc_table(sc);
error = 0;
#else