From Bill Florac:

Patch in revision 24163 is missing same fix needed for "case SRVREG", at line 1156.

svn path=/trunk/; revision=24165
This commit is contained in:
Jaap Keuter 2008-01-22 18:20:00 +00:00
parent 227f4e78f8
commit 8cd88c8912
1 changed files with 1 additions and 1 deletions

View File

@ -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);