blob: 4798a77f55b3d46a4ebcbe798ddf968cd88a7dad [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001From 10e7d4e4bfcb70344d18f0d4ce36068475747f25 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 29 Mar 2017 15:59:43 -0700
4Subject: [PATCH] correct the location of unistd.h
5
6Signed-off-by: Khem Raj <raj.khem@gmail.com>
7---
8 os-daq-modules/daq_ipfw.c | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11diff --git a/os-daq-modules/daq_ipfw.c b/os-daq-modules/daq_ipfw.c
12index 016beb0..c2a4175 100644
13--- a/os-daq-modules/daq_ipfw.c
14+++ b/os-daq-modules/daq_ipfw.c
15@@ -23,10 +23,10 @@
16 #include <stdlib.h>
17 #include <string.h>
18 #include <stdio.h>
19+#include <unistd.h>
20
21 #include <sys/types.h>
22 #include <sys/time.h>
23-#include <sys/unistd.h>
24
25 #include <netinet/in.h>
26 #include <sys/socket.h>
27--
282.12.1
29