diff options
author | 2016-09-11 19:49:51 +0000 | |
---|---|---|
committer | 2016-09-11 19:49:51 +0000 | |
commit | 307fea50790075d066ab16283f1bace048276142 (patch) | |
tree | 38a2e91e7043466c7c356dae03221defafe45175 | |
parent | Do not pretend that we can send more than IPV6_MAXPACKET bytes (diff) | |
download | wireguard-openbsd-307fea50790075d066ab16283f1bace048276142.tar.xz wireguard-openbsd-307fea50790075d066ab16283f1bace048276142.zip |
Whitespace
-rw-r--r-- | sbin/ping6/ping6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ping6/ping6.c b/sbin/ping6/ping6.c index 30b02d59341..c02d38c212d 100644 --- a/sbin/ping6/ping6.c +++ b/sbin/ping6/ping6.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ping6.c,v 1.184 2016/09/11 19:49:20 florian Exp $ */ +/* $OpenBSD: ping6.c,v 1.185 2016/09/11 19:49:51 florian Exp $ */ /* $KAME: ping6.c,v 1.163 2002/10/25 02:19:06 itojun Exp $ */ /* @@ -123,7 +123,7 @@ struct payload { #define EXTRA 256 /* for AH and various other headers. weird. */ #define DEFDATALEN ICMP6ECHOTMLEN #define MAXPAYLOAD IPV6_MAXPACKET - IP6LEN - ICMP6ECHOLEN -#define MAXWAIT_DEFAULT 10 /* secs to wait for response */ +#define MAXWAIT_DEFAULT 10 /* secs to wait for response */ #define A(bit) rcvd_tbl[(bit)>>3] /* identify byte in array */ #define B(bit) (1 << ((bit) & 0x07)) /* identify bit in byte */ |