mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 16:49:40 +00:00
- Typo fix
- style(9) fix Spotted by: kib@, Andrey Zonov
This commit is contained in:
parent
1b4cc91fcc
commit
c6fd18e027
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=239337
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user