isotpdump: fix service 0x23 naming according to UDS specification

Fix Service 0x23 naming according to the standard
"ReadDataByMemory" -> "ReadMemoryByAddress"

Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net>
pull/145/head
jogo- 2019-06-08 09:32:05 +02:00 committed by Oliver Hartkopp
parent c10c049ce7
commit 9aa993df4c
1 changed files with 1 additions and 1 deletions

View File

@ -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;