From owner-svn-src-all@FreeBSD.ORG Thu Aug 16 19:22:35 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 71D23106568A; Thu, 16 Aug 2012 19:22:35 +0000 (UTC) (envelope-from gonzo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5A7018FC16; Thu, 16 Aug 2012 19:22:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7GJMZ1A057789; Thu, 16 Aug 2012 19:22:35 GMT (envelope-from gonzo@svn.freebsd.org) Received: (from gonzo@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7GJMZI4057787; Thu, 16 Aug 2012 19:22:35 GMT (envelope-from gonzo@svn.freebsd.org) Message-Id: <201208161922.q7GJMZI4057787@svn.freebsd.org> From: Oleksandr Tymoshenko Date: Thu, 16 Aug 2012 19:22:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r239337 - head/sys/nfs X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Aug 2012 19:22:35 -0000 Author: gonzo Date: Thu Aug 16 19:22:34 2012 New Revision: 239337 URL: http://svn.freebsd.org/changeset/base/239337 Log: - Typo fix - style(9) fix Spotted by: kib@, Andrey Zonov Modified: head/sys/nfs/bootp_subr.c Modified: head/sys/nfs/bootp_subr.c ============================================================================== --- head/sys/nfs/bootp_subr.c Thu Aug 16 18:31:50 2012 (r239336) +++ head/sys/nfs/bootp_subr.c Thu Aug 16 19:22:34 2012 (r239337) @@ -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;