memset
authorderaadt <deraadt@openbsd.org>
Fri, 6 Dec 1996 15:33:31 +0000 (15:33 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 6 Dec 1996 15:33:31 +0000 (15:33 +0000)
libexec/telnetd/utility.c

index ee7695b..e6746ba 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: utility.c,v 1.4 1996/12/06 15:26:28 deraadt Exp $     */
+/*     $OpenBSD: utility.c,v 1.5 1996/12/06 15:33:31 deraadt Exp $     */
 /*     $NetBSD: utility.c,v 1.9 1996/02/28 20:38:29 thorpej Exp $      */
 
 /*
@@ -39,7 +39,7 @@
 static char sccsid[] = "@(#)utility.c  8.4 (Berkeley) 5/30/95";
 static char rcsid[] = "$NetBSD: utility.c,v 1.9 1996/02/28 20:38:29 thorpej Exp $";
 #else
-static char rcsid[] = "$OpenBSD: utility.c,v 1.4 1996/12/06 15:26:28 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: utility.c,v 1.5 1996/12/06 15:33:31 deraadt Exp $";
 #endif
 #endif /* not lint */
 
@@ -102,7 +102,7 @@ stilloob(s)
     do {
        FD_ZERO(&excepts);
        FD_SET(s, &excepts);
-       bzero(&timeout, sizeof timeout);
+       memset((char *)&timeout, 0, sizeof timeout);
        value = select(s+1, (fd_set *)0, (fd_set *)0, &excepts, &timeout);
     } while ((value == -1) && (errno == EINTR));