diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1998-10-13 09:49:16 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1998-10-13 09:49:16 +0000 |
commit | 09e17daec544332a3c97b42f82711cccaea4633f (patch) | |
tree | 167845599682593dd66d021774b46d56708d14e6 /usr.sbin/sade/disks.c | |
parent | a8c504d1d4c4dfd3121aa2b3eff1436d78c36830 (diff) | |
download | src-09e17daec544332a3c97b42f82711cccaea4633f.tar.gz src-09e17daec544332a3c97b42f82711cccaea4633f.zip |
properly conditionalize for alpha.
Notes
Notes:
svn path=/head/; revision=40297
Diffstat (limited to 'usr.sbin/sade/disks.c')
-rw-r--r-- | usr.sbin/sade/disks.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sade/disks.c b/usr.sbin/sade/disks.c index de3046f4ad6a..fd2bed49b1c8 100644 --- a/usr.sbin/sade/disks.c +++ b/usr.sbin/sade/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.104 1998/10/07 03:15:08 jkh Exp $ + * $Id: disks.c,v 1.105 1998/10/13 09:45:59 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -135,12 +135,12 @@ print_command_summary() static u_char * getBootMgr(char *dname) { +#ifndef __alpha__ /* only meaningful on x86 */ extern u_char mbr[], boot0[]; char str[80]; char *cp; int i = 0; -#ifndef __alpha__ /* only meaningful on x86 */ cp = variable_get(VAR_BOOTMGR); if (!cp) { /* Figure out what kind of MBR the user wants */ |