Fix two warnings.

This commit is contained in:
Peter Wemm 1999-05-09 10:45:54 +00:00
parent a924771339
commit 3f74540725
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=46782
2 changed files with 10 additions and 2 deletions

View File

@ -27,7 +27,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: if_fxp.c,v 1.67 1999/04/16 21:22:51 peter Exp $
* $Id: if_fxp.c,v 1.68 1999/05/08 21:59:39 dfr Exp $
*/
/*
@ -1128,12 +1128,16 @@ fxp_intr(arg)
FXP_RFA_STATUS_IAMATCH) &&
(eh->ether_dhost[0] & 1)
== 0) {
#ifdef BRIDGE
dropit:
#endif
if (m)
m_freem(m);
goto rcvloop;
}
#ifdef BRIDGE
getit:
#endif
m->m_data +=
sizeof(struct ether_header);
m->m_len -=

View File

@ -27,7 +27,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: if_fxp.c,v 1.67 1999/04/16 21:22:51 peter Exp $
* $Id: if_fxp.c,v 1.68 1999/05/08 21:59:39 dfr Exp $
*/
/*
@ -1128,12 +1128,16 @@ fxp_intr(arg)
FXP_RFA_STATUS_IAMATCH) &&
(eh->ether_dhost[0] & 1)
== 0) {
#ifdef BRIDGE
dropit:
#endif
if (m)
m_freem(m);
goto rcvloop;
}
#ifdef BRIDGE
getit:
#endif
m->m_data +=
sizeof(struct ether_header);
m->m_len -=