aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ipdc.h
diff options
context:
space:
mode:
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2009-01-09 07:39:13 +0000
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2009-01-09 07:39:13 +0000
commitb68b2ab2560c12328df5c0af6357cd0efd06c00e (patch)
tree3eafb354db3cc0f5525e37847388373a1a865f80 /epan/dissectors/packet-ipdc.h
parente7b162cac8891252468a49fedebb71143749251f (diff)
From Didier Gautheron:
Add missing {0, NULL} tuples to value string declarations. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27201 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ipdc.h')
-rw-r--r--epan/dissectors/packet-ipdc.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/epan/dissectors/packet-ipdc.h b/epan/dissectors/packet-ipdc.h
index 61cd82fe2c..168ab2407a 100644
--- a/epan/dissectors/packet-ipdc.h
+++ b/epan/dissectors/packet-ipdc.h
@@ -53,6 +53,7 @@ static const value_string encoding_type_vals[] = {
{ 0x12, "G.729A" },
{ 0x60, "Transparent data encoding" },
{ 0x61, "T.38 fax over UPD" },
+ { 0, NULL }
};
static const value_string line_status_vals[] = {
@@ -63,6 +64,7 @@ static const value_string line_status_vals[] = {
{ 0x04, "Other alarm or error" },
{ 0x05, "Up" },
{ 0x06, "Loopback" },
+ { 0, NULL }
};
static const value_string channel_status_vals[] = {
@@ -76,6 +78,7 @@ static const value_string channel_status_vals[] = {
{ 0x08, "Connected" },
{ 0x50, "On hook" },
{ 0x51, "Off hook" },
+ { 0, NULL }
};
static const value_string message_code_vals[] = {
@@ -138,7 +141,7 @@ static const value_string message_code_vals[] = {
{ 0x0005, "TD -> SS: RCSO: Request outbound call setup" },
{ 0x0006, "SS -> TD: ACSO: Accept outbound call setup" },
{ 0x0007, "SS -> TD: CONO: Outbound call connected" },
- { 0, NULL },
+ { 0, NULL }
};
static const value_string tag_description[] = {
@@ -245,7 +248,7 @@ static const value_string tag_description[] = {
{ 0xC2, "Number of Operational Universal Ports" },
{ 0xC3, "Number of Operational HDLC-only (digital) ports" },
{ 0xFE, "Q.850 Cause code" },
- { 0, NULL },
+ { 0, NULL }
};
typedef struct _ipdc_tag_type_val {
@@ -356,7 +359,7 @@ static const ipdc_tag_type_val ipdc_tag_types[] = {
{ 0xC2, IPDC_UINT },
{ 0xC3, IPDC_UINT },
{ 0xFE, IPDC_UINT },
- { 0xFFFF, IPDC_UNKNOWN },
+ { 0xFFFF, IPDC_UNKNOWN }
};
#define IPDC_TAG(x) (256 * (x))
@@ -648,5 +651,5 @@ static const value_string tag_enum_type[] = {
{ IPDC_TAG(0xc1) + 0x14, "UK" },
{ IPDC_TAG(0xc1) + 0x15, "US" },
{ IPDC_TAG(0xc1) + 0x15, "Brazil" },
- { 0, NULL },
+ { 0, NULL }
};