From 9880874b0636660d72617ec29604380896c003d7 Mon Sep 17 00:00:00 2001 From: Alin Serdean Date: Tue, 22 Sep 2015 19:53:31 +0000 Subject: [PATCH] Include headers when using ovs_rundir This patch adds an additional include file while compiling under MSVC. Found by compiling under MSVC x64 and hitting the following problem: http://stackoverflow.com/questions/23144151/64-bit-function-returns-32-bit-pointer Signed-off-by: Alin Gabriel Serdean Signed-off-by: Gurucharan Shetty --- lib/stream-tcp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/stream-tcp.c b/lib/stream-tcp.c index ac42924b3..fc5a60644 100644 --- a/lib/stream-tcp.c +++ b/lib/stream-tcp.c @@ -76,6 +76,8 @@ const struct stream_class tcp_stream_class = { }; #ifdef _WIN32 +#include "dirs.h" + static int windows_open(const char *name, char *suffix, struct stream **streamp, uint8_t dscp) -- 2.20.1