diff options
author | brooks <brooks@FreeBSD.org> | 2006-04-13 18:34:14 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2006-04-13 18:34:14 +0000 |
commit | 054ff1b4671b4d17fee388e9e38b3a7c95e2d3b8 (patch) | |
tree | 4337485d1388e577ecd5d727aff1b2acc1d299d9 | |
parent | 63f9dcf0301bf19c8e0b2efae36330caa7d09b36 (diff) | |
download | FreeBSD-src-054ff1b4671b4d17fee388e9e38b3a7c95e2d3b8.zip FreeBSD-src-054ff1b4671b4d17fee388e9e38b3a7c95e2d3b8.tar.gz |
Spell synchronous with required silent 'h'.
Reported by: ru, ceri
Pointy hat: brooks
-rw-r--r-- | etc/defaults/rc.conf | 2 | ||||
-rw-r--r-- | etc/network.subr | 2 | ||||
-rw-r--r-- | share/man/man5/rc.conf.5 | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf index 32dd8ff..f82addf 100644 --- a/etc/defaults/rc.conf +++ b/etc/defaults/rc.conf @@ -95,7 +95,7 @@ nisdomainname="NO" # Set to NIS domain if using NIS (or NO). dhclient_program="/sbin/dhclient" # Path to dhcp client program. dhclient_flags="" # Additional flags to pass to dhcp client. background_dhclient="NO" # Start dhcp client in the background. -syncronous_dhclient="YES" # Start dhclient directly on configured +synchronous_dhclient="YES" # Start dhclient directly on configured # interfaces during startup. firewall_enable="NO" # Set to YES to enable firewall functionality firewall_script="/etc/rc.firewall" # Which script to run to set up the firewall diff --git a/etc/network.subr b/etc/network.subr index a9b1ddd..5df0de5 100644 --- a/etc/network.subr +++ b/etc/network.subr @@ -233,7 +233,7 @@ syncdhcpif() ;; esac done - if checkyesno syncronous_dhclient; then + if checkyesno synchronous_dhclient; then return 0 else return 1 diff --git a/share/man/man5/rc.conf.5 b/share/man/man5/rc.conf.5 index 5872475..cc404a6 100644 --- a/share/man/man5/rc.conf.5 +++ b/share/man/man5/rc.conf.5 @@ -364,13 +364,13 @@ to start the DHCP client in background. This can cause trouble with applications depending on a working network, but it will provide a faster startup in many cases. -.It Va syncronous_dhclient +.It Va synchronous_dhclient .Pq Bt bool Set to .Dq Li NO to start .Xr dhclient 8 -only in response to interface events and not syncronously at startup. +only in response to interface events and not synchronously at startup. This behavior can be overridden on a per-interface basis by replacing the .Dq Li DHCP |