From: Ansis Atteka Date: Wed, 21 Dec 2011 17:59:16 +0000 (-0800) Subject: vswitchd: fix "implicit declaration of function" build warning. X-Git-Tag: sliver-openvswitch-0.1-1~537 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=5bd31620685801af66c022878b6029faa16d12b1;p=sliver-openvswitch.git 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 1c55b6775..6caad0600 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 3ae3b0f8b..265410fcb 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"