aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ms-mms.c
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2010-09-15 16:16:23 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2010-09-15 16:16:23 +0000
commita5532739d60334e748da4b44ad386ec97deadc51 (patch)
treea3d1056f60d415095ed71df74643931928281adb /epan/dissectors/packet-ms-mms.c
parentfbf198ae9b24d305aed09f07b83a3ca44ae5f31d (diff)
Remove a few more calls to check_col()
svn path=/trunk/; revision=34124
Diffstat (limited to 'epan/dissectors/packet-ms-mms.c')
-rw-r--r--epan/dissectors/packet-ms-mms.c57
1 files changed, 18 insertions, 39 deletions
diff --git a/epan/dissectors/packet-ms-mms.c b/epan/dissectors/packet-ms-mms.c
index fc6cacc210..68e0c32ae3 100644
--- a/epan/dissectors/packet-ms-mms.c
+++ b/epan/dissectors/packet-ms-mms.c
@@ -481,16 +481,13 @@ static gint dissect_msmms_command(tvbuff_t *tvb, packet_info *pinfo, proto_tree
/* Show summary in info column */
- if (check_col(pinfo->cinfo, COL_INFO))
- {
- col_append_fstr(pinfo->cinfo, COL_INFO,
- "seq=%03u: %s %s",
- sequence_number,
- (command_dir == TO_SERVER) ? "-->" : "<--",
- (command_dir == TO_SERVER) ?
- val_to_str(command_id, to_server_command_vals, "Unknown") :
- val_to_str(command_id, to_client_command_vals, "Unknown"));
- }
+ col_append_fstr(pinfo->cinfo, COL_INFO,
+ "seq=%03u: %s %s",
+ sequence_number,
+ (command_dir == TO_SERVER) ? "-->" : "<--",
+ (command_dir == TO_SERVER) ?
+ val_to_str(command_id, to_server_command_vals, "Unknown") :
+ val_to_str(command_id, to_client_command_vals, "Unknown"));
/* Adjust length_remaining for command-specific details */
length_remaining = (length_remaining*8) - 8;
@@ -610,10 +607,7 @@ static gint dissect_msmms_data_udp_command(tvbuff_t *tvb, packet_info *pinfo, pr
proto_tree_add_item(msmms_tree, hf_msmms_data_packet_to_resend, tvb, offset, 4, TRUE);
offset += 4;
- if (check_col(pinfo->cinfo, COL_INFO))
- {
- col_append_fstr(pinfo->cinfo, COL_INFO, " %u", packet_number);
- }
+ col_append_fstr(pinfo->cinfo, COL_INFO, " %u", packet_number);
}
/* Report that whole of UDP packet was dissected */
@@ -734,11 +728,8 @@ static gint dissect_msmms_data(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tr
offset = packet_length;
/* Show summary in info column */
- if (check_col(pinfo->cinfo, COL_INFO))
- {
- col_add_fstr(pinfo->cinfo, COL_INFO, "Data: seq=%05u, len=%05u",
- sequence_number, packet_length);
- }
+ col_add_fstr(pinfo->cinfo, COL_INFO, "Data: seq=%05u, len=%05u",
+ sequence_number, packet_length);
/* Whole of packet length has been dissected now */
return offset;
@@ -778,11 +769,8 @@ static void dissect_client_transport_info(tvbuff_t *tvb, packet_info *pinfo, pro
offset, length_remaining-20,
transport_info, "Transport: (%s)", transport_info);
- if (check_col(pinfo->cinfo, COL_INFO))
- {
- col_append_fstr(pinfo->cinfo, COL_INFO, " (%s)",
- format_text((guchar*)transport_info, length_remaining - 20));
- }
+ col_append_fstr(pinfo->cinfo, COL_INFO, " (%s)",
+ format_text((guchar*)transport_info, length_remaining - 20));
/* Try to extract details from this string */
@@ -883,11 +871,8 @@ static void dissect_server_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *t
offset, server_version_length*2,
server_version);
- if (check_col(pinfo->cinfo, COL_INFO))
- {
- col_append_fstr(pinfo->cinfo, COL_INFO, " (version='%s')",
- format_text((guchar*)server_version, server_version_length));
- }
+ col_append_fstr(pinfo->cinfo, COL_INFO, " (version='%s')",
+ format_text((guchar*)server_version, server_version_length));
}
offset += (server_version_length*2);
@@ -950,11 +935,8 @@ static void dissect_client_player_info(tvbuff_t *tvb, packet_info *pinfo, proto_
offset, length_remaining-12,
player_info);
- if (check_col(pinfo->cinfo, COL_INFO))
- {
- col_append_fstr(pinfo->cinfo, COL_INFO, " (%s)",
- format_text((guchar*)player_info, (length_remaining - 12)/2));
- }
+ col_append_fstr(pinfo->cinfo, COL_INFO, " (%s)",
+ format_text((guchar*)player_info, (length_remaining - 12)/2));
}
/* Dissect info about where client wants to start playing from */
@@ -1046,11 +1028,8 @@ static void dissect_request_server_file(tvbuff_t *tvb, packet_info *pinfo, proto
offset, length_remaining-16,
server_file);
- if (check_col(pinfo->cinfo, COL_INFO))
- {
- col_append_fstr(pinfo->cinfo, COL_INFO, " (%s)",
- format_text((guchar*)server_file, (length_remaining - 16)/2));
- }
+ col_append_fstr(pinfo->cinfo, COL_INFO, " (%s)",
+ format_text((guchar*)server_file, (length_remaining - 16)/2));
}
/* Dissect media details from server */