mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Minimal change for #if __FreeBSD__ >= 3 to check __FreeBSD_version instead.
This commit is contained in:
parent
e266594c25
commit
05209199cf
2 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue