We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b17135d commit 24dd8c0Copy full SHA for 24dd8c0
src/hd-rum-translator/hd-rum-translator.cpp
@@ -655,7 +655,7 @@ static int parse_global_opts(int argc, char **argv,
655
{ "verbose", optional_argument, nullptr, 'V'},
656
{ "capabilities", no_argument, nullptr, 'b'},
657
{ "help", no_argument, nullptr, 'h'},
658
- { "contol-port", required_argument, nullptr, 'n'},
+ { "control-port", required_argument, nullptr, 'n'},
659
{ "conference", required_argument, nullptr, 'r'},
660
{ "version", no_argument, nullptr, 'v'},
661
{ nullptr, 0, nullptr, 0 }
@@ -666,7 +666,7 @@ static int parse_global_opts(int argc, char **argv,
666
while ((ch = getopt_long(argc, argv, optstring, getopt_options,
667
nullptr)) != -1) {
668
switch (ch) {
669
- case 'c':
+ case 'n':
670
parsed->control_port = stoi(optarg);
671
parsed->control_connection_type = 0;
672
if (strchr(optarg, ':') != nullptr) {
0 commit comments