aboutsummaryrefslogtreecommitdiff
path: root/release/sysinstall/disks.c
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1998-10-13 09:45:59 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1998-10-13 09:45:59 +0000
commit762709567b047695608da2316f618898fab71ba4 (patch)
treead0738a485ed191f54031085c199308778a66213 /release/sysinstall/disks.c
parent9e9260f7439788035d4b72f34efaa37a8838d879 (diff)
downloadsrc-762709567b047695608da2316f618898fab71ba4.tar.gz
src-762709567b047695608da2316f618898fab71ba4.zip
switch to proper boot0
Notes
Notes: svn path=/head/; revision=40295
Diffstat (limited to 'release/sysinstall/disks.c')
-rw-r--r--release/sysinstall/disks.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/sysinstall/disks.c b/release/sysinstall/disks.c
index 9703014ff290..de3046f4ad6a 100644
--- a/release/sysinstall/disks.c
+++ b/release/sysinstall/disks.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: disks.c,v 1.103 1998/09/30 21:58:36 jkh Exp $
+ * $Id: disks.c,v 1.104 1998/10/07 03:15:08 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -135,7 +135,7 @@ print_command_summary()
static u_char *
getBootMgr(char *dname)
{
- extern u_char mbr[], bteasy17[];
+ extern u_char mbr[], boot0[];
char str[80];
char *cp;
int i = 0;
@@ -159,7 +159,7 @@ getBootMgr(char *dname)
if (cp || i) {
switch (BootMgr) {
case 0:
- return bteasy17;
+ return boot0;
case 1:
return mbr;