From 8250a3d8c7529d5322a67799d019643508f90e9a Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Thu, 25 Apr 2019 21:11:48 +0200 Subject: fixed another build error for print_pcap_devices() if HAVE_PCAP undefined Signed-off-by: Toni Uhlig --- src/ptunnel.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ptunnel.c b/src/ptunnel.c index 5089eca..d70edce 100644 --- a/src/ptunnel.c +++ b/src/ptunnel.c @@ -165,8 +165,13 @@ int main(int argc, char *argv[]) { pt_random(); if (opts.list_pcap_devices) { +#ifdef HAVE_PCAP print_pcap_devices(); return 0; +#else + pt_log(kLog_error, "Pcap not available!\n"); + return 1; +#endif } #ifdef HAVE_PCAP -- cgit v1.2.3