From 330a930b01abe64262d1c46c2e27b33e9bbe1487 Mon Sep 17 00:00:00 2001 From: Peter Seiderer Date: Sat, 10 Nov 2018 00:12:40 +0100 Subject: [PATCH] monitor: add missing sys/stat.h include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: CC monitor/pcap.o monitor/pcap.c: In function ‘pcap_create’: monitor/pcap.c:121:6: error: ‘S_IRUSR’ undeclared (first use in this function) S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); ^ monitor/pcap.c:121:6: note: each undeclared identifier is reported only once for each function it appears in monitor/pcap.c:121:16: error: ‘S_IWUSR’ undeclared (first use in this function) S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); ^ monitor/pcap.c:121:26: error: ‘S_IRGRP’ undeclared (first use in this function) S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); ^ monitor/pcap.c:121:36: error: ‘S_IROTH’ undeclared (first use in this function) S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); ^ --- monitor/pcap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/monitor/pcap.c b/monitor/pcap.c index 54ad9f55..785aefa2 100644 --- a/monitor/pcap.c +++ b/monitor/pcap.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include #include