diff options
| author | Hellmuth Michaelis <hm@FreeBSD.org> | 2001-07-22 19:55:05 +0000 |
|---|---|---|
| committer | Hellmuth Michaelis <hm@FreeBSD.org> | 2001-07-22 19:55:05 +0000 |
| commit | f305cfab6a979eb5d07cdaa415a13c9821d01057 (patch) | |
| tree | be9c19893f19ae6cda505f2de1655788acbd34e8 | |
| parent | 56d8cb57b9ea877c38cd4725f36425b9f7e54a72 (diff) | |
Notes
| -rw-r--r-- | sys/i4b/capi/iavc/iavc_lli.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/i4b/capi/iavc/iavc_lli.c b/sys/i4b/capi/iavc/iavc_lli.c index 7ce7eb454b22..a8ffb5a057b3 100644 --- a/sys/i4b/capi/iavc/iavc_lli.c +++ b/sys/i4b/capi/iavc/iavc_lli.c @@ -256,7 +256,11 @@ int iavc_send(capi_softc_t *capi_sc, struct mbuf *m) } if (_IF_QFULL(&sc->sc_txq)) { +#if defined (__FreeBSD__) && __FreeBSD__ > 4 _IF_DROP(&sc->sc_txq); +#else + IF_DROP(&sc->sc_txq); +#endif printf("iavc%d: tx overflow, message dropped\n", sc->sc_unit); |
