- Typo fix

- style(9) fix

Spotted by: kib@, Andrey Zonov
This commit is contained in:
Oleksandr Tymoshenko 2012-08-16 19:22:34 +00:00
parent 1b4cc91fcc
commit c6fd18e027
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=239337

View File

@ -84,7 +84,7 @@ __FBSDID("$FreeBSD$");
/*
* Wait 10 seconds for interface appearance
* USB ethernet adapters might reqquire some time to pop up
* USB ethernet adapters might require some time to pop up
*/
#ifndef BOOTP_IFACE_WAIT_TIMEOUT
#define BOOTP_IFACE_WAIT_TIMEOUT 10
@ -1523,8 +1523,11 @@ bootpc_init(void)
#endif
struct nfsv3_diskless *nd;
struct thread *td;
int timeout = BOOTP_IFACE_WAIT_TIMEOUT * hz;
int delay = hz / 10;
int timeout;
int delay;
timeout = BOOTP_IFACE_WAIT_TIMEOUT * hz;
delay = hz / 10;
nd = &nfsv3_diskless;
td = curthread;