aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Lars Völker <lars.voelker@technica-engineering.de>2022-08-30 20:31:24 +0200
committerDr. Lars Völker <lars.voelker@technica-engineering.de>2022-08-30 20:31:24 +0200
commit940010336e9f66232f7b3d2b6677238c316dde39 (patch)
tree51ec8208b7f4e2bbba093c79437f2cef851c0e4e
parent68a77b48e93d09e2bb1c38d9d6c4b1fd22c12000 (diff)
MKA: Fix header field names "lowest acceptable PN"
This patch makes clear that the "Lowest Acceptable PN" is only the most signifant 32 bits. While the standard states this, Wireshark did not.
-rw-r--r--epan/dissectors/packet-mka.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mka.c b/epan/dissectors/packet-mka.c
index ef26673f11..6a5d1b5bff 100644
--- a/epan/dissectors/packet-mka.c
+++ b/epan/dissectors/packet-mka.c
@@ -1011,7 +1011,7 @@ proto_register_mka(void)
NULL, HFILL }},
{ &hf_mka_latest_lowest_acceptable_pn, {
- "Latest Key: Lowest Acceptable PN", "mka.latest_lowest_acceptable_pn",
+ "Latest Key: Lowest Acceptable PN (32 MSB)", "mka.latest_lowest_acceptable_pn",
FT_BYTES, BASE_NONE, NULL, 0x0,
NULL, HFILL }},
@@ -1026,7 +1026,7 @@ proto_register_mka(void)
NULL, HFILL }},
{ &hf_mka_old_lowest_acceptable_pn, {
- "Old Key: Lowest Acceptable PN", "mka.old_lowest_acceptable_pn",
+ "Old Key: Lowest Acceptable PN (32 MSB)", "mka.old_lowest_acceptable_pn",
FT_BYTES, BASE_NONE, NULL, 0x0,
NULL, HFILL }},