diff options
| author | Pyun YongHyeon <yongari@FreeBSD.org> | 2011-12-19 19:00:34 +0000 |
|---|---|---|
| committer | Pyun YongHyeon <yongari@FreeBSD.org> | 2011-12-19 19:00:34 +0000 |
| commit | cbecedb2c55c1de2bbd6fba357050980f8d32952 (patch) | |
| tree | df7382c668931843aedd5c9775a690724c9f3952 /sys/dev/fxp | |
| parent | a7f5f7948b9d500472d72698a7765cde7edfa3f0 (diff) | |
Notes
Diffstat (limited to 'sys/dev/fxp')
| -rw-r--r-- | sys/dev/fxp/if_fxp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/fxp/if_fxp.c b/sys/dev/fxp/if_fxp.c index 62c8dc2f4f0e..0255b919019a 100644 --- a/sys/dev/fxp/if_fxp.c +++ b/sys/dev/fxp/if_fxp.c @@ -1454,7 +1454,7 @@ fxp_encap(struct fxp_softc *sc, struct mbuf **m_head) return (ENOBUFS); } tcp = (struct tcphdr *)(mtod(m, char *) + poff); - m = m_pullup(m, poff + sizeof(struct tcphdr) + tcp->th_off); + m = m_pullup(m, poff + (tcp->th_off << 2)); if (m == NULL) { *m_head = NULL; return (ENOBUFS); |
