diff options
author | 2007-10-21 03:02:09 +0000 | |
---|---|---|
committer | 2007-10-21 03:02:09 +0000 | |
commit | d962c4c10cde44944a1ef5ae20efd09c6868e4c2 (patch) | |
tree | 02c5d7cae63c1b0b9cb6c72e34b3d6f620786a61 /sys/dev/isa/if_ex.c | |
parent | Add multicast support. (diff) | |
download | wireguard-openbsd-d962c4c10cde44944a1ef5ae20efd09c6868e4c2.tar.xz wireguard-openbsd-d962c4c10cde44944a1ef5ae20efd09c6868e4c2.zip |
Remove a bogus and unnecessary check for if_addrlist from ex_init().
ok dlg@
Diffstat (limited to 'sys/dev/isa/if_ex.c')
-rw-r--r-- | sys/dev/isa/if_ex.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/isa/if_ex.c b/sys/dev/isa/if_ex.c index a134ce1b012..54b3d84b6a3 100644 --- a/sys/dev/isa/if_ex.c +++ b/sys/dev/isa/if_ex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ex.c,v 1.31 2007/10/21 02:25:27 brad Exp $ */ +/* $OpenBSD: if_ex.c,v 1.32 2007/10/21 03:02:09 brad Exp $ */ /* * Copyright (c) 1997, Donald A. Schmidt * Copyright (c) 1996, Javier Martín Rueda (jmrueda@diatel.upm.es) @@ -293,8 +293,6 @@ ex_init(struct ex_softc *sc) DODEBUG(Start_End, printf("ex_init: start\n");); - if (TAILQ_EMPTY(&ifp->if_addrlist)) - return; s = splnet(); sc->arpcom.ac_if.if_timer = 0; |