From 13d5a0654f7a56bab0947fe30f0834ff5a6f96e2 Mon Sep 17 00:00:00 2001 From: Benjamin Riefenstahl Date: Wed, 26 Jan 2022 19:15:40 +0100 Subject: [PATCH] images/9front/functions (guest_ssh): Fix parameter parsing. --- images/9front/functions | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/images/9front/functions b/images/9front/functions index 7cb553c..8b61c47 100644 --- a/images/9front/functions +++ b/images/9front/functions @@ -15,7 +15,8 @@ boot() { } guest_ssh() { - port=$1 - shift 2 + # Parameters: -p $port user@localhost + port=$2 + shift 3 PASS=password DIALSRV=$port drawterm -a none -u glenda -h 127.0.0.1 -c "$*" } -- 2.38.5