diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-01-07 00:57:55 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2000-01-07 00:57:55 +0000 |
commit | b2251b1313131981728d2f775c918c53e83b89fe (patch) | |
tree | 3a5259a26fe7f5e86282cd7d6f80f84d0845d343 /sys/netinet/tcp_output.c | |
parent | bf88f8ae1ea2bbbb0921e5e922422c5933c53d67 (diff) |
s/memset/bzero/
From: Michael Shalayeff <mickey@lucifier.dial-up.user.akula.net>
Diffstat (limited to 'sys/netinet/tcp_output.c')
-rw-r--r-- | sys/netinet/tcp_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_output.c b/sys/netinet/tcp_output.c index fdccb07e017..6d6cf41dfa6 100644 --- a/sys/netinet/tcp_output.c +++ b/sys/netinet/tcp_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_output.c,v 1.28 1999/12/21 17:49:28 provos Exp $ */ +/* $OpenBSD: tcp_output.c,v 1.29 2000/01/07 00:57:54 itojun Exp $ */ /* $NetBSD: tcp_output.c,v 1.16 1997/06/03 16:17:09 kml Exp $ */ /* @@ -807,7 +807,7 @@ send: union sockaddr_union sa; struct tdb *tdb; - memset(&sa, 0, sizeof(union sockaddr_union)); + bzero(&sa, sizeof(union sockaddr_union)); switch (tp->pf) { case 0: /*default to PF_INET*/ |