aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/inap
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-01-05 13:39:41 +0100
committerAnders Broman <a.broman58@gmail.com>2016-02-04 09:44:43 +0000
commit81b457d0c461b06de836148733d31e2e8e40cdb3 (patch)
tree7d747faac049cab2b71a03a82b5e32943b0afc8c /asn1/inap
parent35ef16bcaf80564991b3acf339bcf65429ab6f6f (diff)
ASN1: fix misspelling (found by Lintian)
Extention -> Extension Change-Id: I10278ce21da805b2b86cac6e2b14e921acf15544 Reviewed-on: https://code.wireshark.org/review/13052 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'asn1/inap')
-rw-r--r--asn1/inap/inap.cnf2
-rw-r--r--asn1/inap/packet-inap-template.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/asn1/inap/inap.cnf b/asn1/inap/inap.cnf
index 06ab3e28d3..49aaba5f5b 100644
--- a/asn1/inap/inap.cnf
+++ b/asn1/inap/inap.cnf
@@ -211,7 +211,7 @@ static const inap_err_t inap_err_tab[] = {
#.FN_BODY ExtensionField/value
proto_tree *ext_tree;
- ext_tree = proto_tree_add_subtree(tree, tvb, offset, -1, ett_inap_extention_data, NULL, "Extension Data");
+ ext_tree = proto_tree_add_subtree(tree, tvb, offset, -1, ett_inap_extension_data, NULL, "Extension Data");
if (obj_id){
offset=call_ber_oid_callback(obj_id, tvb, offset, actx->pinfo, ext_tree, NULL);
}else{
diff --git a/asn1/inap/packet-inap-template.c b/asn1/inap/packet-inap-template.c
index 9986498dfd..d1fc40d8c3 100644
--- a/asn1/inap/packet-inap-template.c
+++ b/asn1/inap/packet-inap-template.c
@@ -80,7 +80,7 @@ static int hf_inap_cause_indicator = -1;
static gint ett_inap = -1;
static gint ett_inapisup_parameter = -1;
static gint ett_inap_HighLayerCompatibility = -1;
-static gint ett_inap_extention_data = -1;
+static gint ett_inap_extension_data = -1;
static gint ett_inap_cause = -1;
#include "packet-inap-ett.c"
@@ -222,7 +222,7 @@ void proto_register_inap(void) {
&ett_inap,
&ett_inapisup_parameter,
&ett_inap_HighLayerCompatibility,
- &ett_inap_extention_data,
+ &ett_inap_extension_data,
&ett_inap_cause,
#include "packet-inap-ettarr.c"
};