diff options
Diffstat (limited to 'slirp')
-rw-r--r-- | slirp/slirp.h | 2 | ||||
-rw-r--r-- | slirp/tcp_subr.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/slirp/slirp.h b/slirp/slirp.h index c2fa86e995..1167485057 100644 --- a/slirp/slirp.h +++ b/slirp/slirp.h @@ -295,7 +295,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 diff --git a/slirp/tcp_subr.c b/slirp/tcp_subr.c index bf8a2026f3..07cfc0e4fe 100644 --- a/slirp/tcp_subr.c +++ b/slirp/tcp_subr.c @@ -240,7 +240,7 @@ tcp_newtcpcb(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; |