From e9ec7451755a50449811738b5a0adad49a864fe3 Mon Sep 17 00:00:00 2001 From: Tom Everman Date: Thu, 2 Sep 2010 11:08:53 -0700 Subject: [PATCH] ofproto: Fix merge error from commit e20567b044. --- ofproto/ofproto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c index 3c6ba6a83..3c165c71b 100644 --- a/ofproto/ofproto.c +++ b/ofproto/ofproto.c @@ -2434,10 +2434,10 @@ handle_flow_mod(struct ofproto *p, struct ofconn *ofconn, switch (ntohs(ofm->command) & 0xff) { case OFPFC_ADD: - return modify_flows_loose(p, ofconn, ofm, n_actions); + return add_flow(p, ofconn, ofm, n_actions); case OFPFC_MODIFY: - return modify_flow_strict(p, ofconn, ofm, n_actions); + return modify_flows_loose(p, ofconn, ofm, n_actions); case OFPFC_MODIFY_STRICT: return modify_flow_strict(p, ofconn, ofm, n_actions); -- 2.47.0