From 7811498d4912d1190bc693faf1cc59de68baa9ec Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Fri, 15 Feb 2019 11:29:00 +0100 Subject: [PATCH] windows: allow multiple pcap devices on commandline Ticket #2774 --- src/suricata.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/suricata.c b/src/suricata.c index 9ce1047612..7935c45ff5 100644 --- a/src/suricata.c +++ b/src/suricata.c @@ -1168,13 +1168,7 @@ static int ParseCommandLinePcapLive(SCInstance *suri, const char *in_arg) LiveRegisterDeviceName(suri->pcap_dev); } } else if (suri->run_mode == RUNMODE_PCAP_DEV) { -#ifdef OS_WIN32 - SCLogError(SC_ERR_PCAP_MULTI_DEV_NO_SUPPORT, "pcap multi dev " - "support is not (yet) supported on Windows."); - return TM_ECODE_FAILED; -#else LiveRegisterDeviceName(suri->pcap_dev); -#endif } else { SCLogError(SC_ERR_MULTIPLE_RUN_MODE, "more than one run mode " "has been specified"); -- 2.47.2