aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h235.c
diff options
context:
space:
mode:
authorkukosa <kukosa@f5534014-38df-0310-8fa8-9805f1628bb7>2005-09-19 07:35:05 +0000
committerkukosa <kukosa@f5534014-38df-0310-8fa8-9805f1628bb7>2005-09-19 07:35:05 +0000
commit5819875392478d143f9e74f9b0d75d9f07498b49 (patch)
tree99d59e6b507c3f160706f06cbbe3f11319a52696 /epan/dissectors/packet-h235.c
parent1ce62a2e94eecd86a957d8fb41403bec5b305aa7 (diff)
remove unused parameter 'name' from dissect_per_choice()
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15861 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-h235.c')
-rw-r--r--epan/dissectors/packet-h235.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-h235.c b/epan/dissectors/packet-h235.c
index 22fc8c32ab..119325833c 100644
--- a/epan/dissectors/packet-h235.c
+++ b/epan/dissectors/packet-h235.c
@@ -469,7 +469,7 @@ static const per_choice_t ECKASDH_choice[] = {
static int
dissect_h235_ECKASDH(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, int hf_index) {
offset = dissect_per_choice(tvb, offset, pinfo, tree, hf_index,
- ett_h235_ECKASDH, ECKASDH_choice, "ECKASDH",
+ ett_h235_ECKASDH, ECKASDH_choice,
NULL);
return offset;
@@ -545,7 +545,7 @@ static const per_choice_t AuthenticationBES_choice[] = {
static int
dissect_h235_AuthenticationBES(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, int hf_index) {
offset = dissect_per_choice(tvb, offset, pinfo, tree, hf_index,
- ett_h235_AuthenticationBES, AuthenticationBES_choice, "AuthenticationBES",
+ ett_h235_AuthenticationBES, AuthenticationBES_choice,
NULL);
return offset;
@@ -582,7 +582,7 @@ static const per_choice_t AuthenticationMechanism_choice[] = {
int
dissect_h235_AuthenticationMechanism(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, int hf_index) {
offset = dissect_per_choice(tvb, offset, pinfo, tree, hf_index,
- ett_h235_AuthenticationMechanism, AuthenticationMechanism_choice, "AuthenticationMechanism",
+ ett_h235_AuthenticationMechanism, AuthenticationMechanism_choice,
NULL);
return offset;
@@ -761,7 +761,7 @@ static const per_choice_t H235Key_choice[] = {
static int
dissect_h235_H235Key(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, int hf_index) {
offset = dissect_per_choice(tvb, offset, pinfo, tree, hf_index,
- ett_h235_H235Key, H235Key_choice, "H235Key",
+ ett_h235_H235Key, H235Key_choice,
NULL);
return offset;
@@ -895,7 +895,7 @@ int
dissect_h235_CryptoToken(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, int hf_index) {
proto_tree_add_item_hidden(tree, proto_h235, tvb, offset, 0, FALSE);
offset = dissect_per_choice(tvb, offset, pinfo, tree, hf_index,
- ett_h235_CryptoToken, CryptoToken_choice, "CryptoToken",
+ ett_h235_CryptoToken, CryptoToken_choice,
NULL);
return offset;