aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-08-28 01:57:13 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-08-28 01:57:13 +0000
commita6adeb0b2c4b331dfa71c42ade25b7d22235f62c (patch)
tree6c17787d450c88ffc66e141841092b427f80a034 /epan
parent927b1668d8736aad7d4492d96936daade11f8c76 (diff)
value_strings are terminated with {0,NULL} not {0xff,NULL}
svn path=/trunk/; revision=15578
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-cops.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-cops.c b/epan/dissectors/packet-cops.c
index 485e65486f..0c9402692c 100644
--- a/epan/dissectors/packet-cops.c
+++ b/epan/dissectors/packet-cops.c
@@ -457,7 +457,7 @@ static const value_string table_cops_dqos_transaction_id[] =
{ 0xc, "Gate Delete Err" },
{ 0xd, "Gate Open" },
{ 0xe, "Gate Close" },
- { 0xFF, NULL },
+ { 0, NULL },
};
/* Direction */
@@ -465,7 +465,7 @@ static const value_string table_cops_direction[] =
{
{ 0x0, "Downstream gate" },
{ 0x1, "Upstream gate" },
- { 0xFF, NULL },
+ { 0, NULL },
};
/* Session Class */
@@ -475,7 +475,7 @@ static const value_string table_cops_session_class[] =
{ 0x1, "Normal priority VoIP session" },
{ 0x2, "High priority VoIP session" },
{ 0x3, "Reserved" },
- { 0xFF, NULL },
+ { 0, NULL },
};
/* Reason Code */
@@ -483,7 +483,7 @@ static const value_string table_cops_reason_code[] =
{
{ 0x0, "Gate Delete Operation" },
{ 0x1, "Gate Close Operation" },
- { 0xFF, NULL },
+ { 0, NULL },
};
/* Reason Sub Code - Delete */
@@ -496,7 +496,7 @@ static const value_string table_cops_reason_subcode_delete[] =
{ 0x4, "Unexpected Gate-Open" },
{ 0x5, "Local Gate-Close failure" },
{ 0x127,"Unspecified error" },
- { 0xFF, NULL },
+ { 0, NULL },
};
/* Reason Sub Code - Close */
@@ -511,7 +511,7 @@ static const value_string table_cops_reason_subcode_close[] =
{ 0x6, "Timer T7 expiration; Service Flow reservation timeout" },
{ 0x7, "Timer T8 expiration; Service Flow inactivity in the upstream direction" },
{ 0x127,"Unspecified error" },
- { 0xFF, NULL },
+ { 0, NULL },
};
/* PacketCable Error */
@@ -525,7 +525,7 @@ static const value_string table_cops_packetcable_error[] =
{ 0x6, "Missing Required Object" },
{ 0x7, "Invalid Object" },
{ 0x127,"Unspecified error" },
- { 0xFF, NULL },
+ { 0, NULL },
};