commit | dc04c91a4c3f9c170688a6d8cffda254ff2426c5 | [log] [tgz] |
---|---|---|
author | Rich Lane <rich.lane@bigswitch.com> | Fri Jan 11 09:13:37 2013 -0800 |
committer | Rich Lane <rich.lane@bigswitch.com> | Fri Jan 11 09:13:37 2013 -0800 |
tree | 781f35473fd033fc8b4b4c2c35ace24656f1a9ad | |
parent | 8f2861eb5c879d7761d458204c9ad59e4fe2e576 [diff] |
of12: fix bug in packet_to_flow_match
diff --git a/src/python/of12/parse.py b/src/python/of12/parse.py index 95c66c4..6374a75 100644 --- a/src/python/of12/parse.py +++ b/src/python/of12/parse.py
@@ -319,7 +319,7 @@ match_ls.add(ip_proto) match_ls.add(udp_src) match_ls.add(udp_dst) - returnmatch_ls + return match_ls if ICMP in packet: icmp = packet[ICMP]