diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2016-09-07 17:55:15 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2016-09-07 17:55:15 +0000 |
commit | b979d871975b9fd22aa6a59b7cca059342752f54 (patch) | |
tree | bd0b0e7494375115a7d44905d78ca7cd8b92e675 /sbin/ping/ping.c | |
parent | 3e7cc6b2cec3a4da358ec2660513ca88cfaa58ee (diff) |
normalize code to send preload packets
Diffstat (limited to 'sbin/ping/ping.c')
-rw-r--r-- | sbin/ping/ping.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ping/ping.c b/sbin/ping/ping.c index 38e40505bd3..bed3069bcca 100644 --- a/sbin/ping/ping.c +++ b/sbin/ping/ping.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ping.c,v 1.150 2016/09/07 17:53:53 florian Exp $ */ +/* $OpenBSD: ping.c,v 1.151 2016/09/07 17:55:14 florian Exp $ */ /* $NetBSD: ping.c,v 1.20 1995/08/11 22:37:58 cgd Exp $ */ /* @@ -537,7 +537,7 @@ main(int argc, char *argv[]) printf("PING %s (%s): %d data bytes\n", hostname, pr_addr((struct sockaddr *)&dst, sizeof(dst)), datalen); - while (preload--) /* fire off them quickies */ + while (preload--) /* Fire off them quickies. */ pinger(); (void)signal(SIGINT, onsignal); |