From 7cd47fcb209967598ecb86c822b6b5b79c709b83 Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Tue, 8 Jan 2019 09:49:13 +0000 Subject: [PATCH] Change "dstar" to "d-star". --- RemoteControl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RemoteControl.cpp b/RemoteControl.cpp index 1ad6cf3d7..368ac8f1e 100644 --- a/RemoteControl.cpp +++ b/RemoteControl.cpp @@ -51,7 +51,7 @@ REMOTE_COMMAND CRemoteControl::getCommand() command = RC_MODE_IDLE; else if (::memcmp(buffer, "mode lockout", 12U) == 0) command = RC_MODE_LOCKOUT; - else if (::memcmp(buffer, "mode dstar", 10U) == 0) + else if (::memcmp(buffer, "mode d-star", 11U) == 0) command = RC_MODE_DSTAR; else if (::memcmp(buffer, "mode dmr", 8U) == 0) command = RC_MODE_DMR;