aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-08-28 02:28:48 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-08-28 02:28:48 +0000
commita085bc9094172fe2ece821dce0c1064e53ead216 (patch)
tree45624e75276657e3391214e631286800382ee3f3 /asn1
parente3e3b12e7162a755c1556a81232449475466aa83 (diff)
add missing value_string termination
svn path=/trunk/; revision=15582
Diffstat (limited to 'asn1')
-rw-r--r--asn1/inap/packet-inap-template.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/asn1/inap/packet-inap-template.c b/asn1/inap/packet-inap-template.c
index 5be4f23e1b..e23a3f391d 100644
--- a/asn1/inap/packet-inap-template.c
+++ b/asn1/inap/packet-inap-template.c
@@ -102,7 +102,8 @@ const value_string inap_opr_code_strings[] = {
{33,"ResetTimer"},
{23,"RequestReportBCSMEvent"},
{49,"SpecializedResourceReport"},
- {22,"ReleaseCall"}
+ {22,"ReleaseCall"},
+{0, NULL}
};
const value_string inap_error_code_strings[] = {
@@ -121,13 +122,15 @@ const value_string inap_error_code_strings[] = {
{14,"UnexpectedComponentSequence"},
{15,"UnexpectedDataValue"},
{16,"UnexpectedParameter"},
-{17,"UnknownLegID"}
+{17,"UnknownLegID"},
+{0, NULL}
};
const value_string inap_general_problem_strings[] = {
{0,"General Problem Unrecognized Component"},
{1,"General Problem Mistyped Component"},
{3,"General Problem Badly Structured Component"},
+{0, NULL}
};