Fixing typos a minor changes

pull/18/head^2
schizza 2024-04-28 17:30:54 +02:00
parent c1a5afb510
commit 5f847a3bb7
1 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ function validate_num() {
}
function validate_dest() {
echo "Validating host '$2' ... "
if ping -c 4 2>/dev/null; then
echo "Validating host '$1' ... "
if ping -c 2 $1 >/dev/null 2>&1; then
info "OK"
true
else