* bug fix for CommonCLI, when entering long unknown command

This commit is contained in:
Scott Powell
2025-05-19 23:39:34 +10:00
parent 5d0a8d9d7c
commit f9c0056955

View File

@@ -358,6 +358,6 @@ void CommonCLI::handleCommand(uint32_t sender_timestamp, const char* command, ch
_callbacks->dumpLogFile();
strcpy(reply, " EOF");
} else {
sprintf(reply, "Unknown: %s", command);
strcpy(reply, "Unknown command");
}
}