aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-openflow_v4.c
diff options
context:
space:
mode:
authorShu Shen <shu.shen@gmail.com>2014-04-14 16:04:50 -0700
committerEvan Huus <eapache@gmail.com>2014-04-15 02:37:21 +0000
commita88b81109c5cd7ce75a709b28c3402c96cce2cde (patch)
tree141dbe58ec95ee889d1744b063bca379e50d91a1 /epan/dissectors/packet-openflow_v4.c
parent16b26b8e5fa066bfde0939ca2a66af00af44285e (diff)
Fix typo for packet-openflow_v4.c, Unknown Message Type
Change-Id: I6b416785f99c9a333d799188f06637d6643b4a38 Signed-off-by: Shu Shen <shu.shen@gmail.com> Reviewed-on: https://code.wireshark.org/review/1147 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-openflow_v4.c')
-rw-r--r--epan/dissectors/packet-openflow_v4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-openflow_v4.c b/epan/dissectors/packet-openflow_v4.c
index 5b10a95354..5c504e37a7 100644
--- a/epan/dissectors/packet-openflow_v4.c
+++ b/epan/dissectors/packet-openflow_v4.c
@@ -4579,7 +4579,7 @@ dissect_openflow_v4(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *d
length = tvb_get_ntohs(tvb, 2);
col_append_fstr(pinfo->cinfo, COL_INFO, "Type: %s",
- val_to_str_const(type, openflow_v4_type_values, "Unknown Messagetype"));
+ val_to_str_const(type, openflow_v4_type_values, "Unknown message type"));
/* Create display subtree for the protocol */
ti = proto_tree_add_item(tree, proto_openflow_v4, tvb, 0, -1, ENC_NA);