From e68f2b46da679f81082f5e89423ed3c066283e69 Mon Sep 17 00:00:00 2001 From: baosen Date: Sat, 6 Aug 2022 19:23:35 +0200 Subject: [PATCH] Fix the string PT_ECHO_REPLY. (#5203) --- Source/dvlnet/packet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/dvlnet/packet.cpp b/Source/dvlnet/packet.cpp index 5c215d341..a7d53d3a5 100644 --- a/Source/dvlnet/packet.cpp +++ b/Source/dvlnet/packet.cpp @@ -73,7 +73,7 @@ const char *packet_type_to_string(uint8_t packetType) case PT_ECHO_REQUEST: return "PT_ECHO_REQUEST"; case PT_ECHO_REPLY: - return "PT_ECHO_REQUEST"; + return "PT_ECHO_REPLY"; default: return nullptr; }