1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-05 09:14:03 +00:00

Remove useless variable vjlen.

Submitted by:	Sergio de Souza Prallon <prallon@tmp.com.br>
This commit is contained in:
Hellmuth Michaelis 2001-01-23 10:01:55 +00:00
parent 2f74661cc7
commit 74acef9ae7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=71420

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;