Remove assigned only variable.

This commit is contained in:
Gleb Smirnoff 2016-12-21 22:47:10 +00:00
parent a728ea8ea2
commit 030b9c2f69
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=310376

View File

@ -1170,7 +1170,7 @@ syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th,
struct syncache_head *sch;
struct mbuf *ipopts = NULL;
u_int ltflags;
int win, sb_hiwat, ip_ttl, ip_tos;
int win, ip_ttl, ip_tos;
char *s;
int rv = 0;
#ifdef INET6
@ -1208,7 +1208,6 @@ syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th,
ip_ttl = inp->inp_ip_ttl;
ip_tos = inp->inp_ip_tos;
win = sbspace(&so->so_rcv);
sb_hiwat = so->so_rcv.sb_hiwat;
ltflags = (tp->t_flags & (TF_NOOPT | TF_SIGNATURE));
#ifdef TCP_RFC7413