aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cops.c
diff options
context:
space:
mode:
authorBruno Verstuyft <bruno.verstuyft@excentis.com>2018-07-12 15:05:53 +0200
committerRoland Knall <rknall@gmail.com>2018-07-12 15:32:51 +0000
commiteba42b0012da6befd062c9d8cfa9c93cc2a168f6 (patch)
tree514414bc4dab9fffd82db9bdf3533869fb0a3d35 /epan/dissectors/packet-cops.c
parent3d0b00243a77f3f11f134b4a7dc09fc3a8422ef8 (diff)
COPS: fixed error codes
Change-Id: If18f380fa813e1df234d5fd3bced806c419d154a Reviewed-on: https://code.wireshark.org/review/28691 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-cops.c')
-rw-r--r--epan/dissectors/packet-cops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-cops.c b/epan/dissectors/packet-cops.c
index 93c75ca080..9e1486d9b0 100644
--- a/epan/dissectors/packet-cops.c
+++ b/epan/dissectors/packet-cops.c
@@ -370,7 +370,7 @@ static const value_string table_cops_reason_subcode_delete[] =
{ 0x3, "Authorization revoked" },
{ 0x4, "Unexpected Gate-Open" },
{ 0x5, "Local Gate-Close failure" },
- { 0x127,"Unspecified error" },
+ { 0x7f,"Unspecified error" },
{ 0, NULL },
};
@@ -385,7 +385,7 @@ static const value_string table_cops_reason_subcode_close[] =
{ 0x5, "Timer T1 expiration; no Commit received from MTA" },
{ 0x6, "Timer T7 expiration; Service Flow reservation timeout" },
{ 0x7, "Timer T8 expiration; Service Flow inactivity in the upstream direction" },
- { 0x127,"Unspecified error" },
+ { 0x7f,"Unspecified error" },
{ 0, NULL },
};
@@ -399,7 +399,7 @@ static const value_string table_cops_packetcable_error[] =
{ 0x5, "Gate already set" },
{ 0x6, "Missing Required Object" },
{ 0x7, "Invalid Object" },
- { 0x127,"Unspecified error" },
+ { 0x7f,"Unspecified error" },
{ 0, NULL },
};