diff options
| author | Brian Feldman <green@FreeBSD.org> | 1999-12-18 23:26:26 +0000 |
|---|---|---|
| committer | Brian Feldman <green@FreeBSD.org> | 1999-12-18 23:26:26 +0000 |
| commit | ee1dd7c481bd97b89e422ac61f626137f0eb21e9 (patch) | |
| tree | 7416e5b54b5d971fac0ee2594fe6e8decdf6e49a | |
| parent | d776d82c4d1f366d4288025fc627b09675013381 (diff) | |
Notes
| -rw-r--r-- | sys/net/if_iso88025subr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if_iso88025subr.c b/sys/net/if_iso88025subr.c index 0983fc05148f7..feee4c4a5c1f7 100644 --- a/sys/net/if_iso88025subr.c +++ b/sys/net/if_iso88025subr.c @@ -230,7 +230,7 @@ iso88025_output(ifp, m0, dst, rt0) if (!arpresolve(ac, rt, m, dst, edst, rt0)) return (0); /* if not yet resolved */ /* Add LLC and SNAP headers */ - M_PREPEND(m, 8, M_DONTWAIT) + M_PREPEND(m, 8, M_DONTWAIT); if (m == 0) senderr(ENOBUFS); l = mtod(m, struct llc *); |
