forked from osmocom/wireshark
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
parent
a88b81109c
commit
e304d5d739
|
@ -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)){
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue