diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2004-07-15 15:27:23 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2004-07-15 15:27:23 +0000 |
commit | fb11c7ecabcd6d96d60cbad72ebf55891433407d (patch) | |
tree | 5c6a73448f90cd73e05274fc56830bf804e289d8 /sys/netinet/tcp_var.h | |
parent | 6ac578cbde8a913dbd15b971bd791c2bd0cc85c6 (diff) |
tcp_trace() expects short, not int; ok deraadt
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index 9ac219cc61d..fb6a8217ae5 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_var.h,v 1.64 2004/06/08 19:47:24 markus Exp $ */ +/* $OpenBSD: tcp_var.h,v 1.65 2004/07/15 15:27:22 markus Exp $ */ /* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */ /* @@ -587,7 +587,7 @@ void tcp_setpersist(struct tcpcb *); void tcp_slowtimo(void); struct mbuf * tcp_template(struct tcpcb *); -void tcp_trace(int, int, struct tcpcb *, caddr_t, int, int); +void tcp_trace(short, short, struct tcpcb *, caddr_t, int, int); struct tcpcb * tcp_usrclosed(struct tcpcb *); int tcp_sysctl(int *, u_int, void *, size_t *, void *, size_t); |