From 9aa993df4c2d18a84ac040d81f7afed86c118a1e Mon Sep 17 00:00:00 2001 From: jogo- Date: Sat, 8 Jun 2019 09:32:05 +0200 Subject: [PATCH] isotpdump: fix service 0x23 naming according to UDS specification Fix Service 0x23 naming according to the standard "ReadDataByMemory" -> "ReadMemoryByAddress" Signed-off-by: Oliver Hartkopp --- isotpdump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isotpdump.c b/isotpdump.c index 97baeca..f2db482 100644 --- a/isotpdump.c +++ b/isotpdump.c @@ -104,7 +104,7 @@ void print_uds_message(int service, int nrc) case 0x14: service_name = "ClearDiagnosticInformation"; break; case 0x19: service_name = "ReadDTCInformation"; break; case 0x22: service_name = "ReadDataByIdentifier"; break; - case 0x23: service_name = "ReadDataByMemory"; break; + case 0x23: service_name = "ReadMemoryByAddress"; break; case 0x24: service_name = "ReadScalingDataByIdentifier"; break; case 0x27: service_name = "SecurityAccess"; break; case 0x28: service_name = "CommunicationControl"; break;