aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-srvloc.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2008-01-22 18:20:00 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2008-01-22 18:20:00 +0000
commit8cd88c89125925a6500bea23677b8c9aa9a3494a (patch)
treed4760989bb9fc0e2259c9e2b3ec0f149574c57e6 /epan/dissectors/packet-srvloc.c
parent227f4e78f80b6898a6e11208f8406cc27c60ce31 (diff)
From Bill Florac:
Patch in revision 24163 is missing same fix needed for "case SRVREG", at line 1156. svn path=/trunk/; revision=24165
Diffstat (limited to 'epan/dissectors/packet-srvloc.c')
-rw-r--r--epan/dissectors/packet-srvloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-srvloc.c b/epan/dissectors/packet-srvloc.c
index 7616b1ff11..10e4c1d209 100644
--- a/epan/dissectors/packet-srvloc.c
+++ b/epan/dissectors/packet-srvloc.c
@@ -1153,7 +1153,7 @@ dissect_srvloc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
length = tvb_get_ntohs(tvb, offset);
proto_tree_add_uint(srvloc_tree, hf_srvloc_srvreg_attrlistlen, tvb, offset, 2, length);
offset += 2;
- proto_tree_add_item(srvloc_tree, hf_srvloc_srvreg_attrlist, tvb, offset, length, TRUE);
+ attr_list2(srvloc_tree, hf_srvloc_srvreg_attrlist, tvb, offset, length, CHARSET_UTF_8);
offset += length;
count = tvb_get_guint8(tvb, offset);
proto_tree_add_uint(srvloc_tree, hf_srvloc_srvreg_attrauthcount, tvb, offset, 1, count);