--- tcp_subr.c.orig Sun Jul 21 19:23:18 2002 +++ tcp_subr.c Sun Jul 21 19:25:12 2002 @@ -241,7 +241,7 @@ * then send a RST to peer. */ struct tcpcb * -tcp_drop(struct tcpcb *tp, int errno) { +tcp_drop(struct tcpcb *tp, int err) { /* tcp_drop(tp, errno) register struct tcpcb *tp; int errno; @@ -250,7 +250,7 @@ DEBUG_CALL("tcp_drop"); DEBUG_ARG("tp = %lx", (long)tp); - DEBUG_ARG("errno = %d", errno); + DEBUG_ARG("errno = %d", err); if (TCPS_HAVERCVDSYN(tp->t_state)) { tp->t_state = TCPS_CLOSED;