diff options
author | Ted Lemon <source@isc.org> | 1999-05-07 17:33:36 +0000 |
---|---|---|
committer | Ted Lemon <source@isc.org> | 1999-05-07 17:33:36 +0000 |
commit | f8d1a65ac9d5c548eb9dceb6dbf0db4b5f271409 (patch) | |
tree | 1b4d138687660d0f9edb98a7bda85ca36c653de7 /client | |
parent | 31020a36fd2243133167504b4350f93ae71569f5 (diff) | |
download | isc-dhcp-f8d1a65ac9d5c548eb9dceb6dbf0db4b5f271409.tar.gz |
Don't use -w 1 flag, which doesn't work on FreeBSD.
Diffstat (limited to 'client')
-rwxr-xr-x | client/scripts/freebsd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/scripts/freebsd b/client/scripts/freebsd index d9e44b40..ce7a1bf2 100755 --- a/client/scripts/freebsd +++ b/client/scripts/freebsd @@ -158,7 +158,7 @@ if [ x$reason = xTIMEOUT ]; then sleep 1 if [ "$new_routers" != "" ]; then set $new_routers - if ping -q -c 1 -w 1 $1; then + if ping -q -c 1 $1; then if [ x$new_ip_address != x$alias_ip_address ] && \ [ x$alias_ip_address != x ]; then ifconfig $interface inet alias $alias_ip_address $alias_subnet_arg |