vtmitm

Vtty output duplicator
git clone https://git.sinitax.com/sinitax/vtmitm
Log | Files | Refs | README | sfeed.txt

commit 95a0bb40eabd33871edb99278c8e9d35f85b2ba8
parent 6e966daedecfa8fd07f6362d842917225031856f
Author: Louis Burda <quent.burda@gmail.com>
Date:   Wed,  4 Oct 2023 23:17:48 +0200

Fix argument passing

Diffstat:
Mvtmitm.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vtmitm.c b/vtmitm.c @@ -207,7 +207,7 @@ main(int argc, char *const *argv) err("slave: dup2 stderr"); close(slave); - execv(*cmd, cmd + 1); + execv(*cmd, cmd); err("slave: execv"); } else { if (encode_resize) {