Fix myssh not checking for -d and -c flags.

This commit is contained in:
Kevin Baensch 2023-04-17 10:53:38 +02:00
parent f783ef46b6
commit 8940c8e74e

View file

@ -193,7 +193,7 @@ case "${MAIN_OPTION}" in
exit 1
fi
while getopts "u:p:" o
while getopts "u:p:d:c:" o
do
case "$o" in
u) TARGET_HOST_USERNAME="${OPTARG}" ;;