aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h235.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-06-08 06:06:17 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-06-08 06:06:17 +0000
commitc7fcb8309f65cb68f67082a4c89ef619a4083264 (patch)
tree4faa3654eec73f4ce3912ebd14e74644cbfc1f71 /epan/dissectors/packet-h235.c
parent0d3b8f3b11193e91ef908eb631949f3493155a96 (diff)
MAke it possible to get a tvb with a BIT STRING, regenerate PER dissectors.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18395 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-h235.c')
-rw-r--r--epan/dissectors/packet-h235.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-h235.c b/epan/dissectors/packet-h235.c
index 527518d111..41bf27b8c8 100644
--- a/epan/dissectors/packet-h235.c
+++ b/epan/dissectors/packet-h235.c
@@ -314,7 +314,7 @@ static int dissect_generalId(tvbuff_t *tvb, int offset, asn_ctx_t *actx, proto_t
static int
dissect_h235_KeyMaterial(tvbuff_t *tvb, int offset, asn_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
offset = dissect_per_bit_string(tvb, offset, actx, tree, hf_index,
- 1, 2048, FALSE);
+ 1, 2048, FALSE, NULL);
return offset;
}
@@ -427,7 +427,7 @@ static int dissect_nonStandard(tvbuff_t *tvb, int offset, asn_ctx_t *actx, proto
static int
dissect_h235_BIT_STRING_SIZE_0_2048(tvbuff_t *tvb, int offset, asn_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
offset = dissect_per_bit_string(tvb, offset, actx, tree, hf_index,
- 0, 2048, FALSE);
+ 0, 2048, FALSE, NULL);
return offset;
}
@@ -465,7 +465,7 @@ static int dissect_dhkey(tvbuff_t *tvb, int offset, asn_ctx_t *actx, proto_tree
static int
dissect_h235_BIT_STRING_SIZE_0_511(tvbuff_t *tvb, int offset, asn_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
offset = dissect_per_bit_string(tvb, offset, actx, tree, hf_index,
- 0, 511, FALSE);
+ 0, 511, FALSE, NULL);
return offset;
}
@@ -801,7 +801,7 @@ static int dissect_encrptval(tvbuff_t *tvb, int offset, asn_ctx_t *actx, proto_t
static int
dissect_h235_BIT_STRING(tvbuff_t *tvb, int offset, asn_ctx_t *actx _U_, proto_tree *tree, int hf_index) {
offset = dissect_per_bit_string(tvb, offset, actx, tree, hf_index,
- NO_BOUND, NO_BOUND, FALSE);
+ NO_BOUND, NO_BOUND, FALSE, NULL);
return offset;
}