aboutsummaryrefslogtreecommitdiff
path: root/tcp_subr.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-04-26 19:50:09 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-04-26 19:50:09 +0000
commitae41ef3303cc698d31cf5e26255af8c030a88362 (patch)
treee2f9143f5743778d4f7990b2c212937c4e99d3c5 /tcp_subr.c
parent29aca44171f9b91be2bdac808e8cb94a8f544124 (diff)
downloadslirp-ae41ef3303cc698d31cf5e26255af8c030a88362.zip
slirp-ae41ef3303cc698d31cf5e26255af8c030a88362.tar.gz
slirp-ae41ef3303cc698d31cf5e26255af8c030a88362.tar.bz2
avoid errno variable name
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@766 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'tcp_subr.c')
-rw-r--r--tcp_subr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcp_subr.c b/tcp_subr.c
index 1590262..06940a4 100644
--- a/tcp_subr.c
+++ b/tcp_subr.c
@@ -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;