This fixes a really minor corner case in flow parsing that doesn't make much sense anyway. --- lib/ofp-parse.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/lib/ofp-parse.c b/lib/ofp-parse.c index 52fdbf2..5e488a6 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) \ -- 1.7.4.4 _______________________________________________ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev