From 009853d87ec9ae26edcaa74687a2908a1692b7a1 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 6 Jun 2011 14:25:37 -0700 Subject: [PATCH] ofp-parse: Fix wildcard bits for dl_dst in flow parsing. This fixes a really minor corner case in flow parsing that doesn't make much sense anyway. --- lib/ofp-parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ofp-parse.c b/lib/ofp-parse.c index 52fdbf2f..5e488a6e 100644 --- a/lib/ofp-parse.c +++ b/lib/ofp-parse.c @@ -537,7 +537,7 @@ parse_protocol(const char *name, const struct protocol **p_out) FIELD(F_DL_VLAN, "dl_vlan", 0) \ FIELD(F_DL_VLAN_PCP, "dl_vlan_pcp", 0) \ FIELD(F_DL_SRC, "dl_src", FWW_DL_SRC) \ - FIELD(F_DL_DST, "dl_dst", FWW_DL_DST) \ + FIELD(F_DL_DST, "dl_dst", FWW_DL_DST | FWW_ETH_MCAST) \ FIELD(F_DL_TYPE, "dl_type", FWW_DL_TYPE) \ FIELD(F_NW_SRC, "nw_src", 0) \ FIELD(F_NW_DST, "nw_dst", 0) \ -- 2.30.2