From 27b7b025ef3098fcb78c8d47e2fd282fd6cc839b Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Mon, 1 Dec 2025 12:01:11 +0100 Subject: [PATCH] fixes multiple -p definition in CLI --- src/CLIParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CLIParser.cpp b/src/CLIParser.cpp index 0d3bbab..1c7d621 100644 --- a/src/CLIParser.cpp +++ b/src/CLIParser.cpp @@ -103,7 +103,7 @@ void CLIParser::build() { "parameter to set, value has the form of =") ("config-file,c", po::value()->default_value(""), "read configuration from file") - ("plugin,p", po::value>(), + ("plugin", po::value>(), "plugin(s) to activate") ("dump-config,dc", po::value()->default_value(""), "dump configuration to file file");