aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mikey.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2010-06-09 18:12:17 +0000
committerBill Meier <wmeier@newsguy.com>2010-06-09 18:12:17 +0000
commit7b85f43d0e3f3815131a7b03ef5c115a21bb19e1 (patch)
treef7430a2ebe788d37ae3518e97815dff4d048bd27 /epan/dissectors/packet-mikey.c
parent407b8297c0136655cd6fa3c64a454e6e497b837d (diff)
Do some constifying [or other] based upon gcc -Wwrite-strings warnings.
svn path=/trunk/; revision=33198
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));