diff options
-rw-r--r-- | slirp.h | 2 | ||||
-rw-r--r-- | tcp_subr.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -296,7 +296,7 @@ int tcp_attach _P((struct socket *)); u_int8_t tcp_tos _P((struct socket *)); int tcp_emu _P((struct socket *, struct mbuf *)); int tcp_ctl _P((struct socket *)); -struct tcpcb *tcp_drop(struct tcpcb *tp, int errno); +struct tcpcb *tcp_drop(struct tcpcb *tp, int err); #ifdef USE_PPP #define MIN_MRU MINMRU @@ -239,7 +239,7 @@ struct tcpcb *tcp_newtcpcb(so) struct socket *so; * the specified error. If connection is synchronized, * then send a RST to peer. */ -struct tcpcb *tcp_drop(struct tcpcb *tp, int errno) +struct tcpcb *tcp_drop(struct tcpcb *tp, int err) { /* tcp_drop(tp, errno) register struct tcpcb *tp; |