From 16f2319174505f1add9fc9f57cb5f6b0b135cdcf Mon Sep 17 00:00:00 2001 From: Ville Heikkinen Date: Thu, 26 Oct 2023 16:25:02 +0300 Subject: [PATCH] Set duplicate-packets default to match the help Help text says that the duplicate-packets default is 0, so set it also to be the default. --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index c870d71..ca1dfa6 100644 --- a/src/config.rs +++ b/src/config.rs @@ -45,7 +45,7 @@ impl Config { directory: env::current_dir().unwrap_or_else(|_| env::temp_dir()), single_port: false, read_only: false, - duplicate_packets: 1, + duplicate_packets: 0, overwrite: false, };