Fix the !INET6 compile.

Reported by:	alc
This commit is contained in:
Andre Oppermann 2006-06-17 18:42:07 +00:00
parent 93f0d0c5bf
commit ee2e4c1d4e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=159701

View File

@ -797,8 +797,10 @@ syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th,
struct syncache_head *sch;
struct mbuf *ipopts = NULL;
u_int32_t flowtmp;
int win, autoflowlabel = 0;
int sb_hiwat, ip_ttl, ip_tos;
int win, sb_hiwat, ip_ttl, ip_tos;
#ifdef INET6
int autoflowlabel = 0;
#endif
INP_INFO_WLOCK_ASSERT(&tcbinfo);
INP_LOCK_ASSERT(inp); /* listen socket */