From 9d92987d1c66b16789e61b0de12196bad326bf50 Mon Sep 17 00:00:00 2001 From: Prabhjot Singh Sethi Date: Tue, 17 May 2016 14:25:17 +0530 Subject: [PATCH] Fix sanity issue Adding missing break for a switch case which was causing sanity failures Closes-Bug: 1582526 Change-Id: I8bf4e56c1c8d4421627209271e0849b969b4974a (cherry picked from commit 8e0a955dad9b8eabc4abe21f88129e5c29f4333d) --- src/vnsw/agent/pkt/flow_proto.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vnsw/agent/pkt/flow_proto.cc b/src/vnsw/agent/pkt/flow_proto.cc index a783cdcc93e..afabb9b1cc7 100644 --- a/src/vnsw/agent/pkt/flow_proto.cc +++ b/src/vnsw/agent/pkt/flow_proto.cc @@ -381,6 +381,7 @@ bool FlowProto::FlowEventHandler(FlowEvent *req, FlowTable *table) { FlowHandler *handler = new FlowHandler(agent(), req->pkt_info(), io_, this, table->table_index()); RunProtoHandler(handler); + break; } case FlowEvent::FLOW_MESSAGE: {