ovs-ofctl: Use fcntl instead of sys/fcntl.
authorGurucharan Shetty <gshetty@nicira.com>
Wed, 12 Mar 2014 21:35:10 +0000 (14:35 -0700)
committerGurucharan Shetty <gshetty@nicira.com>
Mon, 17 Mar 2014 21:20:48 +0000 (14:20 -0700)
Windows does not have a sys/fcntl.h

Signed-off-by: Gurucharan Shetty <gshetty@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
utilities/ovs-ofctl.c

index e62e646..8ae7c34 100644 (file)
@@ -25,7 +25,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
-#include <sys/fcntl.h>
+#include <fcntl.h>
 #include <sys/stat.h>
 #include <sys/time.h>