From: Ansis Atteka Date: Wed, 21 Dec 2011 17:59:16 +0000 (-0800) Subject: vswitchd: fix "implicit declaration of function" build warning. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5bd31620685801af66c022878b6029faa16d12b1;p=openvswitch vswitchd: fix "implicit declaration of function" build warning. Included stream.h header file for connmgr.c and bridge.c files. Signed-off-by: Ansis Atteka Reported-by: Ben Pfaff --- diff --git a/ofproto/connmgr.c b/ofproto/connmgr.c index 1c55b677..6caad060 100644 --- a/ofproto/connmgr.c +++ b/ofproto/connmgr.c @@ -33,6 +33,7 @@ #include "pktbuf.h" #include "rconn.h" #include "shash.h" +#include "stream.h" #include "timeval.h" #include "vconn.h" #include "vlog.h" diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 3ae3b0f8..265410fc 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -40,6 +40,7 @@ #include "sha1.h" #include "shash.h" #include "socket-util.h" +#include "stream.h" #include "stream-ssl.h" #include "sset.h" #include "system-stats.h"