aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mikey.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-06-09 18:12:17 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2010-06-09 18:12:17 +0000
commit4a0585f78ce6708d331d57bfd09487c5e33e7e1b (patch)
treef7430a2ebe788d37ae3518e97815dff4d048bd27 /epan/dissectors/packet-mikey.c
parent352f9da2ce7a9ef112d0455a40631b5d40b135f7 (diff)
Do some constifying [or other] based upon gcc -Wwrite-strings warnings.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33198 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-mikey.c')
-rw-r--r--epan/dissectors/packet-mikey.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mikey.c b/epan/dissectors/packet-mikey.c
index ec3880038d..83e32ab8c1 100644
--- a/epan/dissectors/packet-mikey.c
+++ b/epan/dissectors/packet-mikey.c
@@ -863,7 +863,7 @@ dissect_payload_t(mikey_t *mikey _U_, tvbuff_t *tvb, packet_info *pinfo _U_, pro
switch (ts_type) {
case T_NTP:
case T_NTP_UTC: {
- gchar *buff;
+ const gchar *buff;
tvb_ensure_bytes_exist(tvb, offset+2, 8);
buff = ntp_fmt_ts(tvb_get_ptr(tvb, offset+2, 8));