aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/dissectors/packet-s101.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/epan/dissectors/packet-s101.c b/epan/dissectors/packet-s101.c
index f0b73f3d66..c7ec8d5135 100644
--- a/epan/dissectors/packet-s101.c
+++ b/epan/dissectors/packet-s101.c
@@ -360,9 +360,6 @@ dissect_S101(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
if (len < S101_MIN_LENGTH)
return 0;
- /* Set the Protocol column to the constant string of S101 */
- col_set_str(pinfo->cinfo, COL_PROTOCOL, "S101");
-
current_offset = 0;
do {
offset = current_offset;
@@ -370,6 +367,10 @@ dissect_S101(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
if (0 == find_s101_packet_header(tvb, &offset, &start, &slot, &message, &version, &dtd, &command, &flags, &app_bytes[0], &msgLength, &crc)) {
break;
}
+ if (0 == current_offset) {
+ /* Set the Protocol column to the constant string of S101 */
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "S101");
+ }
/* create display subtree for the protocol */
ti = proto_tree_add_item(tree, proto_S101, tvb, current_offset, -1, ENC_NA);