diff options
author | trhodes <trhodes@FreeBSD.org> | 2005-01-09 09:10:24 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2005-01-09 09:10:24 +0000 |
commit | d1d9cce8164ae46ea7db1995980a2fa53691fcd5 (patch) | |
tree | f28b1a4712232f47ebf09f4fa36eacd204aeb8ad /sbin/ping6 | |
parent | 17c4ed7d82da98a044098f1d14adc324324c6636 (diff) | |
download | FreeBSD-src-d1d9cce8164ae46ea7db1995980a2fa53691fcd5.zip FreeBSD-src-d1d9cce8164ae46ea7db1995980a2fa53691fcd5.tar.gz |
Fix build on all (hopefully) 64 bit architectures.
Noticed by: tinderbox
Tested on: panther
Diffstat (limited to 'sbin/ping6')
-rw-r--r-- | sbin/ping6/ping6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/ping6/ping6.c b/sbin/ping6/ping6.c index 64f413f..9310088 100644 --- a/sbin/ping6/ping6.c +++ b/sbin/ping6/ping6.c @@ -1769,7 +1769,7 @@ pr_ip6opt(void *extbuf) struct ip6_hbh *ext; int currentlen; u_int8_t type; - size_t extlen, len; + socklen_t extlen, len; void *databuf; size_t offset; u_int16_t value2; |