From rme@nightfly.apk.net Tue Jul 13 10:49:43 1999
Return-Path: <rme@nightfly.apk.net>
Received: from nightfly.apk.net (nightfly.apk.net [207.54.149.151])
	by hub.freebsd.org (Postfix) with SMTP id EFD1D15066
	for <FreeBSD-gnats-submit@freebsd.org>; Tue, 13 Jul 1999 10:49:22 -0700 (PDT)
	(envelope-from rme@nightfly.apk.net)
Received: (qmail 3135 invoked by uid 1000); 13 Jul 1999 17:51:44 -0000
Message-Id: <19990713175144.3134.qmail@nightfly.apk.net>
Date: 13 Jul 1999 17:51:44 -0000
From: rme@nightfly.apk.net
Reply-To: rme@nightfly.apk.net
To: FreeBSD-gnats-submit@freebsd.org
Subject: trivial grammar patch to boot.c
X-Send-Pr-Version: 3.2

>Number:         12628
>Category:       misc
>Synopsis:       trivial grammar patch to boot.c
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Jul 13 10:50:00 PDT 1999
>Closed-Date:    Thu Jul 15 13:41:20 PDT 1999
>Last-Modified:  Thu Jul 15 13:41:42 PDT 1999
>Originator:     R. Matthew Emerson
>Release:        FreeBSD 3.2-STABLE i386
>Organization:
>Environment:

	

>Description:

	The boot countdown timer says it will boot in 1 seconds,
	which is grammatically incorrect.  (Picky, I know, but
	I'm always impressed when programs get these details right.)

>How-To-Repeat:

	Reboot and watch boot timer count down.

>Fix:

*** boot.c.orig	Thu May 20 01:11:00 1999
--- boot.c	Thu May 20 01:12:16 1999
***************
*** 203,209 ****
  	    break;
  	}
  	if (ntime != otime) {
! 	    printf("\rBooting [%s] in %d seconds... ", getbootfile(0), (int)(when - ntime));
  	    otime = ntime;
  	    cr = 1;
  	}
--- 203,209 ----
  	    break;
  	}
  	if (ntime != otime) {
! 	    printf("\rBooting [%s] in %d second%s... ", getbootfile(0), (int)(when - ntime), (when-ntime)==1?"":"s");
  	    otime = ntime;
  	    cr = 1;
  	}


>Release-Note:
>Audit-Trail:

From: Nick Hibma <nick.hibma@jrc.it>
To: rme@nightfly.apk.net
Cc: FreeBSD-gnats-submit@FreeBSD.ORG
Subject: Re: misc/12628: trivial grammar patch to boot.c
Date: Thu, 15 Jul 1999 10:38:26 +0200 (MET DST)

 FYI, this is 
 
 	src/sys/boot/common/boot.c
 
 
 
State-Changed-From-To: open->closed 
State-Changed-By: n_hibma 
State-Changed-When: Thu Jul 15 13:41:20 PDT 1999 
State-Changed-Why:  
Committed. Thanks! 
>Unformatted:
