These functions take the "times" argument as the second parameter, not
the third.
Fixes: 00e83a5 ("man: trafgen: finish syntax section")
Signed-off-by: Sean Anderson <[email protected]>
---
trafgen.8 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/trafgen.8 b/trafgen.8
index 0b0fb31..5191872 100644
--- a/trafgen.8
+++ b/trafgen.8
@@ -271,8 +271,8 @@ to write configurations:
byte fill function: fill(<content>, <times>): fill(0xca, 128)
compile-time random: rnd(<times>): rnd(128), rnd()
runtime random numbers: drnd(<times>): drnd(128), drnd()
- compile-time counter: seqinc(<start-val>, <increment>, <times>)
- seqdec(<start-val>, <decrement>, <times>)
+ compile-time counter: seqinc(<start-val>, <times>, <increment>)
+ seqdec(<start-val>, <times>, <decrement>)
runtime counter (1byte): dinc(<min-val>, <max-val>, <increment>)
ddec(<min-val>, <max-val>, <decrement>)
.PP
--
2.25.1
--
You received this message because you are subscribed to the Google Groups
"netsniff-ng" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/netsniff-ng/20211207195511.3959579-1-sean.anderson%40seco.com.