From 899dd3aed2597e718bb730dee6e54df2b72800ce Mon Sep 17 00:00:00 2001 From: ospab Date: Thu, 14 May 2026 22:33:58 +0300 Subject: [PATCH] Fix: Eliminate CLI argument short-flag collision for -c mapping to both config and count --- ostp/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ostp/src/main.rs b/ostp/src/main.rs index e93014d..3354df2 100644 --- a/ostp/src/main.rs +++ b/ostp/src/main.rs @@ -8,7 +8,7 @@ use std::path::PathBuf; #[command(author, version, about = "OSTP Core - Ospab Stealth Transport Protocol", long_about = None)] struct Args { /// Path to the JSON configuration file - #[arg(short, long, default_value = "config.json")] + #[arg(long, default_value = "config.json")] config: PathBuf, /// Optional mode to initialize the config for (client or server)