Fix a typo; left out preprocessor conditional for sigoff variable, which

is only used by TCP_SIGNATURE code.

Noticed by:	Roop Nanuwa
This commit is contained in:
bms 2004-02-11 09:46:54 +00:00
parent c407dd7263
commit b11716b2a5

View File

@ -116,7 +116,9 @@ tcp_output(struct tcpcb *tp)
struct socket *so = tp->t_inpcb->inp_socket;
long len, recwin, sendwin;
int off, flags, error;
#ifdef TCP_SIGNATURE
int sigoff = 0;
#endif /* TCP_SIGNATURE */
struct mbuf *m;
struct ip *ip = NULL;
struct ipovly *ipov = NULL;