diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2005-02-23 08:57:47 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2005-02-23 08:57:47 +0000 |
commit | fbf762bda53867e78e47d11a3ed9222dbc1c21d5 (patch) | |
tree | 162890c001891bcd0eae6f3daf8f0434bc33af6d /epan/dissectors/packet-inap.c | |
parent | 55bd0f9bbb0963a7df88392aecb053e3943529dc (diff) | |
download | wireshark-fbf762bda53867e78e47d11a3ed9222dbc1c21d5.tar.gz wireshark-fbf762bda53867e78e47d11a3ed9222dbc1c21d5.tar.bz2 wireshark-fbf762bda53867e78e47d11a3ed9222dbc1c21d5.zip |
update asn2eth and all generated dissectors to new dissect_ber_boolean that takes a implicit_tag parameter
svn path=/trunk/; revision=13479
Diffstat (limited to 'epan/dissectors/packet-inap.c')
-rw-r--r-- | epan/dissectors/packet-inap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-inap.c b/epan/dissectors/packet-inap.c index 9d23637801..a1707680d9 100644 --- a/epan/dissectors/packet-inap.c +++ b/epan/dissectors/packet-inap.c @@ -3070,7 +3070,7 @@ dissect_inap_OriginationAttemptAuthorized(gboolean implicit_tag _U_, tvbuff_t *t static int dissect_inap_BOOLEAN(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tree, int hf_index _U_) { - offset = dissect_ber_boolean(pinfo, tree, tvb, offset, hf_index); + offset = dissect_ber_boolean(implicit_tag, pinfo, tree, tvb, offset, hf_index); return offset; } |