summaryrefslogtreecommitdiff
path: root/utilities/ovs-ofctl.c
diff options
context:
space:
mode:
authorGurucharan Shetty <gshetty@nicira.com>2014-03-12 14:35:10 -0700
committerGurucharan Shetty <gshetty@nicira.com>2014-03-17 14:20:48 -0700
commit71d1b7639cb8e165a5588714f40ba3060e8cb893 (patch)
tree62cf0b50c7f31dea1bf12602351e95bcb45f04e9 /utilities/ovs-ofctl.c
parentf6cea7c9e73de0a3c9643d300966e5cbe91d1635 (diff)
downloadopenvswitch-71d1b7639cb8e165a5588714f40ba3060e8cb893.tar.gz
ovs-ofctl: Use fcntl instead of sys/fcntl.
Windows does not have a sys/fcntl.h Signed-off-by: Gurucharan Shetty <gshetty@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'utilities/ovs-ofctl.c')
-rw-r--r--utilities/ovs-ofctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utilities/ovs-ofctl.c b/utilities/ovs-ofctl.c
index e62e64691..8ae7c34a9 100644
--- a/utilities/ovs-ofctl.c
+++ b/utilities/ovs-ofctl.c
@@ -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>