diff options
author | dfr <dfr@FreeBSD.org> | 1999-05-30 10:45:03 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 1999-05-30 10:45:03 +0000 |
commit | 0681bc77d82190182691b00402fee2e56ec7c23e (patch) | |
tree | 601471d7d914396a75e0fc68ea4fb85cfab9a779 /sys/boot/common | |
parent | 6aee1a4704de9f1bf5108c99495eeff1cdd0bf8a (diff) | |
download | FreeBSD-src-0681bc77d82190182691b00402fee2e56ec7c23e.zip FreeBSD-src-0681bc77d82190182691b00402fee2e56ec7c23e.tar.gz |
Typo: "can't boot 'boot'" should be "can't boot 'kernel'"
Diffstat (limited to 'sys/boot/common')
-rw-r--r-- | sys/boot/common/boot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/common/boot.c b/sys/boot/common/boot.c index e8a7fc8..dc62abe 100644 --- a/sys/boot/common/boot.c +++ b/sys/boot/common/boot.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: boot.c,v 1.10 1998/11/02 16:55:57 msmith Exp $ + * $Id: boot.c,v 1.11 1999/05/28 08:01:52 brian Exp $ */ /* @@ -61,7 +61,7 @@ command_boot(int argc, char *argv[]) /* XXX maybe we should discard everything and start again? */ if (mod_findmodule(NULL, NULL) != NULL) { - sprintf(command_errbuf, "can't boot '%s', kernel module already loaded", argv[0]); + sprintf(command_errbuf, "can't boot '%s', kernel module already loaded", argv[1]); return(CMD_ERROR); } |