aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-12-10 16:26:42 +0100
committerEvan Huus <eapache@gmail.com>2014-12-13 00:16:22 +0000
commitb0cdee67da31683d691de6556a592624e86a351e (patch)
tree489da88068bde4bd4704c3d935ae10cbe8e5806f
parent33c26a09f4a8736c367bffad362b2a0e025e5eba (diff)
DNS: Remove whitespace on DNS Col info before type name
Change-Id: I33a9a54a318a1a3ea106f4531db4e79a6b6d42ac Reviewed-on: https://code.wireshark.org/review/5716 Reviewed-by: Evan Huus <eapache@gmail.com>
-rw-r--r--epan/dissectors/packet-dns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-dns.c b/epan/dissectors/packet-dns.c
index 2ec8254451..f88db857c3 100644
--- a/epan/dissectors/packet-dns.c
+++ b/epan/dissectors/packet-dns.c
@@ -1313,7 +1313,7 @@ dissect_dns_query(tvbuff_t *tvb, int offset, int dns_data_offset,
name_out = format_text(name, strlen(name));
if (cinfo != NULL) {
- col_append_fstr(cinfo, COL_INFO, " %s %s", type_name, name_out);
+ col_append_fstr(cinfo, COL_INFO, "%s %s", type_name, name_out);
if (is_mdns) {
col_append_fstr(cinfo, COL_INFO, ", \"%s\" question", qu ? "QU" : "QM");
}
@@ -1677,7 +1677,7 @@ dissect_dns_answer(tvbuff_t *tvb, int offsetx, int dns_data_offset,
cur_offset += 2;
if (cinfo != NULL) {
- col_append_fstr(cinfo, COL_INFO, " %s", type_name);
+ col_append_fstr(cinfo, COL_INFO, "%s", type_name);
if (is_mdns && flush) {
col_append_str(cinfo, COL_INFO, ", cache flush");
}