aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-01-11 01:37:19 -0800
committerGuy Harris <guy@alum.mit.edu>2018-01-11 09:37:55 +0000
commit72edf4e2506f20f0d3ade69582c48f1b7521c610 (patch)
treee31b1eb79e89f72d5ecdef263be86afe6f7a663e
parenteb5d12c4b97b11c3dcf16cc9d245b631f4389e59 (diff)
Another fix for AT_STRINGZ addresses.
Change-Id: Ib1dc1b59851b87e7e3f83cfc888a494ca94cb289 Reviewed-on: https://code.wireshark.org/review/25261 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--epan/dissectors/packet-logcat-text.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-logcat-text.c b/epan/dissectors/packet-logcat-text.c
index 9d01b8ba62..b6cbaa45c6 100644
--- a/epan/dissectors/packet-logcat-text.c
+++ b/epan/dissectors/packet-logcat-text.c
@@ -278,8 +278,8 @@ static int dissect_logcat_text_thread(tvbuff_t *tvb, packet_info *pinfo, proto_t
dissect_info_t dinfo = { &thread_regex, getters, array_length(getters) };
add_exported_pdu(tvb,pinfo,"logcat_text_brief");
- set_address(&pinfo->dst, AT_STRINGZ, 0, "");
- set_address(&pinfo->src, AT_STRINGZ, 0, "");
+ set_address(&pinfo->dst, AT_STRINGZ, 1, "");
+ set_address(&pinfo->src, AT_STRINGZ, 1, "");
return dissect_logcat_text(tvb, tree, pinfo, &dinfo);
}