99da3a073d
See the `git diff -w` output: |diff --git a/src/getopts.rs b/src/getopts.rs |index 6548a01..517cc37 100644 |--- a/src/getopts.rs |+++ b/src/getopts.rs |@@ -72,7 +72,10 @@ pub fn parse_arguments( | while pos < args.len() { | if skip { | rest.push(args[pos].clone()); |- } else { |+ pos += 1; |+ continue; |+ } |+ | match parse_argument(&args[pos]) { | RawArgument::Separator => { | skip = true; |@@ -135,7 +138,6 @@ pub fn parse_arguments( | rest.push(value); | } | } |- } | | pos += 1; | } Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com> |
||
---|---|---|
.. | ||
api | ||
api3 | ||
backup | ||
bin | ||
catar | ||
cli | ||
config | ||
server | ||
storage | ||
tools | ||
api3.rs | ||
getopts.rs | ||
lib.rs | ||
section_config.rs | ||
static_map.rs | ||
tools.rs |