Remove useless variable vjlen.

Submitted by:	Sergio de Souza Prallon <prallon@tmp.com.br>
This commit is contained in:
hm 2001-01-23 10:01:55 +00:00
parent 5e4cf5aee9
commit ec62944a0b

View File

@ -569,9 +569,9 @@ isppp_input(struct ifnet *ifp, struct mbuf *m)
case PPP_VJ_UCOMP:
if (sp->state[IDX_IPCP] == STATE_OPENED) {
u_char *iphdr;
int hlen, vjlen;
int hlen;
if ((vjlen = sl_uncompress_tcp_core(m->m_data,
if ((sl_uncompress_tcp_core(m->m_data,
m->m_len, m->m_len, TYPE_UNCOMPRESSED_TCP,
&sp->pp_comp, &iphdr, &hlen)) != 0)
goto drop;