Fix typo in packet-openflow_v1 and v5

Change-Id: Iefc02123447edecbd02cd9a31fff0f412edc8461
Signed-off-by: Shu Shen <shu.shen@gmail.com>
Reviewed-on: https://code.wireshark.org/review/1148
Reviewed-by: Evan Huus <eapache@gmail.com>
daniel/osmux
Shu Shen 2014-04-14 16:11:27 -07:00 committed by Evan Huus
parent a88b81109c
commit e304d5d739
2 changed files with 2 additions and 2 deletions

View File

@ -711,7 +711,7 @@ dissect_openflow_v1(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *d
type = tvb_get_guint8(tvb, 1);
col_append_fstr(pinfo->cinfo, COL_INFO, "Type: %s",
val_to_str_const(type, openflow_1_0_type_values, "Unknown Messagetype"));
val_to_str_const(type, openflow_1_0_type_values, "Unknown message type"));
/* Stop the Ethernet frame from overwriting the columns */
if((type == OFPT_1_0_PACKET_IN) || (type == OFPT_1_0_PACKET_OUT)){

View File

@ -5987,7 +5987,7 @@ dissect_openflow_v5(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *d
type = tvb_get_guint8(tvb, 1);
col_append_fstr(pinfo->cinfo, COL_INFO, "Type: %s",
val_to_str_const(type, openflow_v5_type_values, "Unknown Messagetype"));
val_to_str_const(type, openflow_v5_type_values, "Unknown message type"));
ti = proto_tree_add_item(tree, proto_openflow_v5, tvb, 0, -1, ENC_NA);
openflow_tree = proto_item_add_subtree(ti, ett_openflow_v5);