From f4d5d565920c19687b8a37455a6e214299f32a7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dr=2E=20Lars=20V=C3=B6lker?= Date: Wed, 13 Jan 2021 22:41:54 +0000 Subject: [PATCH] AUTOSAR-NM: True-False-String wrong way around for PNI (BUGFIX) This patch fixes the PNI TFString, which was wrong. Correct is: 0 = "... contains no Partial Network ..." 1 = "... contains Partial Network ..." Fixes #17154 (cherry picked from commit 238446dc91cd39bbe56d8aea2bb0f782399f77a6) --- epan/dissectors/packet-autosar-nm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/epan/dissectors/packet-autosar-nm.c b/epan/dissectors/packet-autosar-nm.c index b2cc2dd36e..811144d03f 100644 --- a/epan/dissectors/packet-autosar-nm.c +++ b/epan/dissectors/packet-autosar-nm.c @@ -73,7 +73,7 @@ static const true_false_string tfs_autosar_nm_control_active_wakeup = { "Node has woken up the network", "Node has not woken up the network" }; static const true_false_string tfs_autosar_nm_control_pni = { - "NM message contains no Partial Network request information", "NM message contains Partial Network request information" }; + "NM message contains Partial Network request information", "NM message contains no Partial Network request information" }; /*** Configuration items ***/ /* Set the order of the first two fields (Source Node Identifier and Control Bit Vector */