Date: 13 Jul 1999 17:51:44 -0000 From: rme@nightfly.apk.net To: FreeBSD-gnats-submit@freebsd.org Subject: misc/12628: trivial grammar patch to boot.c Message-ID: <19990713175144.3134.qmail@nightfly.apk.net>
next in thread | raw e-mail | index | archive | help
>Number: 12628
>Category: misc
>Synopsis: trivial grammar patch to boot.c
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: sw-bug
>Submitter-Id: current-users
>Arrival-Date: Tue Jul 13 10:50:00 PDT 1999
>Closed-Date:
>Last-Modified:
>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:
>Unformatted:
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19990713175144.3134.qmail>
