From: Justin Pettit Date: Mon, 28 Apr 2008 21:33:02 +0000 (-0700) Subject: BUG #6 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f60a0b20d6b852e8c2839133fcb69ee9b8cd6f3f;p=openvswitch BUG #6 Fix problem with "dpctl monitor" not working. ** Fix by Ben. ** --- diff --git a/utilities/dpctl.c b/utilities/dpctl.c index 4b3e03af..fc1638d2 100644 --- a/utilities/dpctl.c +++ b/utilities/dpctl.c @@ -262,7 +262,7 @@ static void do_del_port(int argc UNUSED, char *argv[]) static void do_monitor(int argc UNUSED, char *argv[]) { struct dpif dp; - open_nl_vconn(argv[1], false, &dp); + open_nl_vconn(argv[1], true, &dp); for (;;) { struct buffer *b; run(dpif_recv_openflow(&dp, &b, true), "dpif_recv_openflow");