diff options
author | Bill Fenner <fenner@FreeBSD.org> | 1996-05-02 05:54:14 +0000 |
---|---|---|
committer | Bill Fenner <fenner@FreeBSD.org> | 1996-05-02 05:54:14 +0000 |
commit | df5c0b8a7a9783b1738bd8f3f8a1a40a13c0680b (patch) | |
tree | 443c456fd57adf0d61aa18d5e9ee19a8c2bcc3bb | |
parent | af00f8007c7a6f86a2a2c686499ba2733e8c2971 (diff) |
Notes
-rw-r--r-- | sys/netinet/tcp_input.c | 4 | ||||
-rw-r--r-- | sys/netinet/tcp_reass.c | 4 | ||||
-rw-r--r-- | sys/netinet/udp_usrreq.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index b38a5e785820d..67f57168719ee 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_input.c 8.12 (Berkeley) 5/24/95 - * $Id: tcp_input.c,v 1.44 1996/04/27 18:19:10 ache Exp $ + * $Id: tcp_input.c,v 1.45 1996/05/02 05:31:12 fenner Exp $ */ #ifndef TUBA_INCLUDE @@ -378,7 +378,7 @@ findpcb: */ if (inp == NULL) { if (log_in_vain && tiflags & TH_SYN) { - char buf[4*sizeof "123."]; + char buf[4*sizeof "123"]; strcpy(buf, inet_ntoa(ti->ti_dst)); log(LOG_INFO, "Connection attempt to TCP %s:%d" diff --git a/sys/netinet/tcp_reass.c b/sys/netinet/tcp_reass.c index b38a5e785820d..67f57168719ee 100644 --- a/sys/netinet/tcp_reass.c +++ b/sys/netinet/tcp_reass.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_input.c 8.12 (Berkeley) 5/24/95 - * $Id: tcp_input.c,v 1.44 1996/04/27 18:19:10 ache Exp $ + * $Id: tcp_input.c,v 1.45 1996/05/02 05:31:12 fenner Exp $ */ #ifndef TUBA_INCLUDE @@ -378,7 +378,7 @@ findpcb: */ if (inp == NULL) { if (log_in_vain && tiflags & TH_SYN) { - char buf[4*sizeof "123."]; + char buf[4*sizeof "123"]; strcpy(buf, inet_ntoa(ti->ti_dst)); log(LOG_INFO, "Connection attempt to TCP %s:%d" diff --git a/sys/netinet/udp_usrreq.c b/sys/netinet/udp_usrreq.c index 68f1ff56cf1cd..e2e52a986e6fb 100644 --- a/sys/netinet/udp_usrreq.c +++ b/sys/netinet/udp_usrreq.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)udp_usrreq.c 8.6 (Berkeley) 5/23/95 - * $Id: udp_usrreq.c,v 1.23 1996/04/27 18:19:12 ache Exp $ + * $Id: udp_usrreq.c,v 1.24 1996/05/02 05:31:13 fenner Exp $ */ #include <sys/param.h> @@ -280,7 +280,7 @@ udp_input(m, iphlen) } if (inp == NULL) { if (log_in_vain) { - char buf[4*sizeof "123."]; + char buf[4*sizeof "123"]; strcpy(buf, inet_ntoa(ip->ip_dst)); log(LOG_INFO, "Connection attempt to UDP %s:%d" |