From 5c6e91c5dc3f48f0ddc94a8e6c5e503b964b9f06 Mon Sep 17 00:00:00 2001 From: gonzo Date: Thu, 16 Aug 2012 19:22:34 +0000 Subject: [PATCH] - Typo fix - style(9) fix Spotted by: kib@, Andrey Zonov --- sys/nfs/bootp_subr.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sys/nfs/bootp_subr.c b/sys/nfs/bootp_subr.c index 165999a9da1..2c57a91d629 100644 --- a/sys/nfs/bootp_subr.c +++ b/sys/nfs/bootp_subr.c @@ -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; -- 2.45.0