diff options
author | dm <> | 1997-06-04 03:18:41 +0000 |
---|---|---|
committer | dm <> | 1997-06-04 03:18:41 +0000 |
commit | 161d8df7af682a13bd4d1308df77eb4cb43aacdc (patch) | |
tree | 44b19f17eb7307764a8c4d083b626e3c46f540af /src/lib/libc/net/res_send.c | |
parent | c48cc9eb9a5a61836503701757021fa09d76db41 (diff) | |
download | openbsd-161d8df7af682a13bd4d1308df77eb4cb43aacdc.tar.gz openbsd-161d8df7af682a13bd4d1308df77eb4cb43aacdc.tar.bz2 openbsd-161d8df7af682a13bd4d1308df77eb4cb43aacdc.zip |
use bzero instead of FD_ZERO
Diffstat (limited to 'src/lib/libc/net/res_send.c')
-rw-r--r-- | src/lib/libc/net/res_send.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/lib/libc/net/res_send.c b/src/lib/libc/net/res_send.c index 0456dc0cf1..b89398aab3 100644 --- a/src/lib/libc/net/res_send.c +++ b/src/lib/libc/net/res_send.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: res_send.c,v 1.6 1997/06/03 22:43:43 deraadt Exp $ */ | 1 | /* $OpenBSD: res_send.c,v 1.7 1997/06/04 03:18:41 dm Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * ++Copyright++ 1985, 1989, 1993 | 4 | * ++Copyright++ 1985, 1989, 1993 |
@@ -60,7 +60,7 @@ | |||
60 | static char sccsid[] = "@(#)res_send.c 8.1 (Berkeley) 6/4/93"; | 60 | static char sccsid[] = "@(#)res_send.c 8.1 (Berkeley) 6/4/93"; |
61 | static char rcsid[] = "$From: res_send.c,v 8.12 1996/10/08 04:51:06 vixie Exp $"; | 61 | static char rcsid[] = "$From: res_send.c,v 8.12 1996/10/08 04:51:06 vixie Exp $"; |
62 | #else | 62 | #else |
63 | static char rcsid[] = "$OpenBSD: res_send.c,v 1.6 1997/06/03 22:43:43 deraadt Exp $"; | 63 | static char rcsid[] = "$OpenBSD: res_send.c,v 1.7 1997/06/04 03:18:41 dm Exp $"; |
64 | #endif | 64 | #endif |
65 | #endif /* LIBC_SCCS and not lint */ | 65 | #endif /* LIBC_SCCS and not lint */ |
66 | 66 | ||
@@ -595,13 +595,12 @@ read_len: | |||
595 | timeout.tv_sec = 1; | 595 | timeout.tv_sec = 1; |
596 | timeout.tv_usec = 0; | 596 | timeout.tv_usec = 0; |
597 | wait: | 597 | wait: |
598 | dsmaskp = (fd_set *)malloc(howmany(s+1, NFDBITS) * | 598 | dsmaskp = (fd_set *)calloc(howmany(s+1, NFDBITS), |
599 | sizeof(fd_mask)); | 599 | sizeof(fd_mask)); |
600 | if (dsmaskp == NULL) { | 600 | if (dsmaskp == NULL) { |
601 | res_close(); | 601 | res_close(); |
602 | goto next_ns; | 602 | goto next_ns; |
603 | } | 603 | } |
604 | FD_ZERO(dsmaskp); | ||
605 | FD_SET(s, dsmaskp); | 604 | FD_SET(s, dsmaskp); |
606 | n = select(s+1, dsmaskp, (fd_set *)NULL, | 605 | n = select(s+1, dsmaskp, (fd_set *)NULL, |
607 | (fd_set *)NULL, &timeout); | 606 | (fd_set *)NULL, &timeout); |