not sure if this correct, but it compiles again

This commit is contained in:
Sam Leffler 2002-10-18 00:26:34 +00:00
parent 2e307eb8c9
commit 52dee23d90
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=105366

View File

@ -255,14 +255,14 @@ main(int argc, char **argv)
continue;
}
if (!strcasecmp(*cmds,"bteasy")) {
Set_Boot_Mgr(d,bteasy17);
Set_Boot_Mgr(d,bteasy17,sizeof (bteasy17));
continue;
}
if (!strcasecmp(*cmds,"mbr")) {
Set_Boot_Mgr(d,mbr);
Set_Boot_Mgr(d,mbr,sizeof (mbr));
continue;
}
#ifndef __alpha__ /* don't think this compiles on i386 either */
#if 0 /* XXX boot1 undefined, fix me */
if (!strcasecmp(*cmds,"boot")) {
Set_Boot_Blocks(d,boot1,boot2);
continue;