]> Kevux Git Server - fll/commitdiff
Bugfix: Previous commit overlooked the counter resulting in some replacements not...
authorKevin Day <thekevinday@gmail.com>
Sun, 15 May 2022 22:49:51 +0000 (17:49 -0500)
committerKevin Day <thekevinday@gmail.com>
Sun, 15 May 2022 22:50:46 +0000 (17:50 -0500)
Oops! This is what I get for rushing this out with little testing and review.

The problem here is that the "+3" is for the 3 parameter option "--substitute".
The 2 parameter option "--replace" must instead use "+2".

level_3/iki_read/c/private-read.c

index af4c03599b9b935b5a15ec118c724514da86700e..e438dd79064214d12a1660271f3922247cdfb527 100644 (file)
@@ -594,7 +594,7 @@ extern "C" {
 
     f_console_parameter_t *parameter = &data->main->parameters.array[iki_read_parameter_replace_e];
 
-    for (; i < parameter->values.used; i += 3) {
+    for (; i < parameter->values.used; i += 2) {
 
       index = parameter->values.array[i];