minor fix

This commit is contained in:
primardj 2024-02-04 11:51:20 +00:00
parent 2e7d928791
commit 81cca85faa

View file

@ -61,6 +61,7 @@ start_rsp() {
} }
# Parser
# looking for double parametters. # looking for double parametters.
for (( arg=1; arg<$#; arg++)); do for (( arg=1; arg<$#; arg++)); do
@ -124,6 +125,7 @@ fi
# Last check, if protocol define, launch it, else, exit 0
case "${protocol}" in case "${protocol}" in
"ssh") "ssh")
start_ssh start_ssh
@ -133,7 +135,7 @@ case "${protocol}" in
;; ;;
*) *)
echo "protocol ${protocol} uknown" >&2 echo "protocol ${protocol} uknown" >&2
echo ${Usage} echo "${Usage}"
exit exit
;; ;;
esac esac