diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2020-03-31 17:51:20 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2020-03-31 17:51:20 +0200 |
commit | 6dcc487b7a6c108f12bca1ef5faf1580beafe712 (patch) | |
tree | 6af1329280f38cebf39cc2d277a9daed73316191 /print-esp.c | |
parent | 067280e128904d65d738e0e02ec551badc29a1e5 (diff) | |
download | tcpdump-6dcc487b7a6c108f12bca1ef5faf1580beafe712.tar.gz |
ESP: Include conditionally "strtoaddr.h" and "ascii_strcasecmp.h"
Diffstat (limited to 'print-esp.c')
-rw-r--r-- | print-esp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/print-esp.c b/print-esp.c index 0717c5cb..14885d6b 100644 --- a/print-esp.c +++ b/print-esp.c @@ -45,10 +45,12 @@ #endif #include "netdissect.h" -#include "strtoaddr.h" #include "extract.h" +#ifdef HAVE_LIBCRYPTO +#include "strtoaddr.h" #include "ascii_strcasecmp.h" +#endif #include "ip.h" #include "ip6.h" |