aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/asn1/ftam
diff options
context:
space:
mode:
authorJoakim Karlsson <oakimk@gmail.com>2022-03-28 14:24:53 +0200
committerA Wireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2022-03-29 12:05:27 +0000
commitf401cdeaaed9405f351275802d560ca886a3e8fe (patch)
tree491c778f8fb3ec89c960c182be355a8a108b124b /epan/dissectors/asn1/ftam
parent2c5f2ac6f305f9b366f6babf8bc968bdaf3f6b5a (diff)
asn1: fix missing dissector generation
Diffstat (limited to 'epan/dissectors/asn1/ftam')
-rw-r--r--epan/dissectors/asn1/ftam/packet-ftam-template.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/asn1/ftam/packet-ftam-template.c b/epan/dissectors/asn1/ftam/packet-ftam-template.c
index 37d59ea4cf..d4f8399c8d 100644
--- a/epan/dissectors/asn1/ftam/packet-ftam-template.c
+++ b/epan/dissectors/asn1/ftam/packet-ftam-template.c
@@ -56,7 +56,7 @@ static expert_field ei_ftam_zero_pdu = EI_INIT;
static int
dissect_ftam_unstructured_text(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *parent_tree, void* data _U_)
{
- proto_tree_add_item (parent_tree, hf_ftam_unstructured_text, tvb, 0, tvb_reported_length_remaining(tvb, 0), ENC_ASCII|ENC_NA);
+ proto_tree_add_item (parent_tree, hf_ftam_unstructured_text, tvb, 0, tvb_reported_length_remaining(tvb, 0), ENC_ASCII);
return tvb_captured_length(tvb);
}