diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2019-06-10 15:32:20 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2019-06-10 15:32:20 +0200 |
commit | 0c9cfdcb0d28414c1b6ffe45da1a0b6b9aec4977 (patch) | |
tree | 3ee20af2dd229149cf1c48e610ea35621a787e33 /print-esp.c | |
parent | 6fc5b4200b5f1dfdca23bdcc4cca696e5e6df49d (diff) | |
download | tcpdump-0c9cfdcb0d28414c1b6ffe45da1a0b6b9aec4977.tar.gz |
Use nd_ipv6 rather than struct in6_addr
Diffstat (limited to 'print-esp.c')
-rw-r--r-- | print-esp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-esp.c b/print-esp.c index f30563aa..9d8906e5 100644 --- a/print-esp.c +++ b/print-esp.c @@ -100,7 +100,7 @@ struct newesp { #ifdef HAVE_LIBCRYPTO union inaddr_u { nd_ipv4 in4; - struct in6_addr in6; + nd_ipv6 in6; }; struct sa_list { struct sa_list *next; |