aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wspython
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-30 15:03:39 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-30 15:03:39 +0000
commit515d8d5fc86238565bab8df674d98f606ab1ede4 (patch)
tree837e467e93c2a872c07072244a1ac71d6b7842de /epan/wspython
parent79da8f49d867920fb5755fbe36bd492432937197 (diff)
Corrected hfinfo.ref_count -> hfinfo.ref_type.
(how did this ever compile?) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30218 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/wspython')
-rw-r--r--epan/wspython/wspy_proto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/wspython/wspy_proto.c b/epan/wspython/wspy_proto.c
index 4ddc2a8bcd..04ed68fa98 100644
--- a/epan/wspython/wspy_proto.c
+++ b/epan/wspython/wspy_proto.c
@@ -70,7 +70,7 @@ void hf_register_info_add(hf_register_info *hf, guint8 index,
hf[index].hfinfo.blurb = blurb;
hf[index].hfinfo.id = 0;
hf[index].hfinfo.parent = 0;
- hf[index].hfinfo.ref_count = HF_REF_TYPE_NONE;
+ hf[index].hfinfo.ref_type = HF_REF_TYPE_NONE;
hf[index].hfinfo.bitshift = 0;
hf[index].hfinfo.same_name_next = NULL;
hf[index].hfinfo.same_name_prev = NULL;