summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2001-01-11 19:22:09 +0000
committerderaadt <deraadt@openbsd.org>2001-01-11 19:22:09 +0000
commit371ae64d13186887ffaa42eaee5d45fefa0d1700 (patch)
tree645d3ff48946b1f0666aecf23af0205cf6c527ae
parentoops (diff)
downloadwireguard-openbsd-371ae64d13186887ffaa42eaee5d45fefa0d1700.tar.xz
wireguard-openbsd-371ae64d13186887ffaa42eaee5d45fefa0d1700.zip
comment on a signal race
-rw-r--r--sbin/ping/ping.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/ping/ping.c b/sbin/ping/ping.c
index 4dc74b97c3c..794d9ffcf7c 100644
--- a/sbin/ping/ping.c
+++ b/sbin/ping/ping.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ping.c,v 1.42 2000/12/21 00:25:17 deraadt Exp $ */
+/* $OpenBSD: ping.c,v 1.43 2001/01/11 19:22:09 deraadt Exp $ */
/* $NetBSD: ping.c,v 1.20 1995/08/11 22:37:58 cgd Exp $ */
/*
@@ -47,7 +47,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)ping.c 8.1 (Berkeley) 6/5/93";
#else
-static char rcsid[] = "$OpenBSD: ping.c,v 1.42 2000/12/21 00:25:17 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: ping.c,v 1.43 2001/01/11 19:22:09 deraadt Exp $";
#endif
#endif /* not lint */
@@ -557,6 +557,7 @@ catcher()
/*
* Print statistics when SIGINFO is received.
+ * XXX not race safe
*/
void
prtsig()