From 4715ca404179cb1cd92f6a3f734eeb3d83320d5f Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Fri, 25 Mar 2022 16:49:58 +0100 Subject: [PATCH] #25 make callsing upper --- DGWVoiceTransmit/VoiceTransmit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DGWVoiceTransmit/VoiceTransmit.cpp b/DGWVoiceTransmit/VoiceTransmit.cpp index 655f5c7..9403756 100644 --- a/DGWVoiceTransmit/VoiceTransmit.cpp +++ b/DGWVoiceTransmit/VoiceTransmit.cpp @@ -70,7 +70,7 @@ bool parseCLIArgs(int argc, const char * argv[], std::string& repeater, std::vec if(positionalArgs.size() < 2U) return false; - repeater.assign(boost::replace_all_copy(positionalArgs[0], "_", " ")); + repeater.assign(boost::replace_all_copy(boost::to_upper_copy(positionalArgs[0]), "_", " ")); files.assign(positionalArgs.begin() + 1, positionalArgs.end()); if(namedArgs.count("text") > 0U) {