Module Name:    src
Committed By:   phx
Date:           Sun Jan  9 22:59:41 UTC 2011

Modified Files:
        src/sys/arch/sandpoint/stand/netboot: main.c

Log Message:
fixed message: "is found" -> "was found"


To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 src/sys/arch/sandpoint/stand/netboot/main.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/sandpoint/stand/netboot/main.c
diff -u src/sys/arch/sandpoint/stand/netboot/main.c:1.35 src/sys/arch/sandpoint/stand/netboot/main.c:1.36
--- src/sys/arch/sandpoint/stand/netboot/main.c:1.35	Sun Aug  8 11:54:45 2010
+++ src/sys/arch/sandpoint/stand/netboot/main.c	Sun Jan  9 22:59:40 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.35 2010/08/08 11:54:45 phx Exp $ */
+/* $NetBSD: main.c,v 1.36 2011/01/09 22:59:40 phx Exp $ */
 
 /*-
  * Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -133,13 +133,14 @@
 	pcifixup();
 
 	if (dskdv_init(dsk, &dev) == 0 || disk_scan(dev) == 0)
-		printf("no IDE/SATA device driver is found\n");
+		printf("no IDE/SATA device driver was found\n");
 
 	if (netif_init(tag) == 0)
-		printf("no NIC device driver is found\n");
+		printf("no NIC device driver was found\n");
+
+	howto = RB_AUTOBOOT;		/* default is autoboot = 0 */
 
 	/* get boot options and determine bootname */
-	howto = RB_AUTOBOOT;
 	for (n = 1; n < argc; n++) {
 		for (i = 0; i < sizeof(bootargs) / sizeof(bootargs[0]); i++) {
 			if (strncasecmp(argv[n], bootargs[i].name,

Reply via email to