summaryrefslogtreecommitdiff
path: root/sys/arch/macppc
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2003-02-26 20:17:24 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2003-02-26 20:17:24 +0000
commit993c4c542af6a9f1a2e97d1b43e65de0a2bd09bd (patch)
treeca4fa67ef75351c07b55992ff9197d7dbeb4af73 /sys/arch/macppc
parent26a50a239b3d1130ef48b199313aa9d4c97cf51c (diff)
Remove a poor error message which is emitted on perfectly fine MBR labeled
disks. If no label is found on the disk the 'correct' message is printed.
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r--sys/arch/macppc/macppc/disksubr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/macppc/macppc/disksubr.c b/sys/arch/macppc/macppc/disksubr.c
index cbd6da01c96..a583f052ffd 100644
--- a/sys/arch/macppc/macppc/disksubr.c
+++ b/sys/arch/macppc/macppc/disksubr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: disksubr.c,v 1.5 2002/09/15 09:01:58 deraadt Exp $ */
+/* $OpenBSD: disksubr.c,v 1.6 2003/02/26 20:17:23 drahn Exp $ */
/* $NetBSD: disksubr.c,v 1.21 1996/05/03 19:42:03 christos Exp $ */
/*
@@ -131,7 +131,6 @@ readdisklabel(dev, strat, lp, osdep, spoofonly)
part = (struct part_map_entry *)bp->b_data;
/* if first partition is not valid, assume not HFS/DPME partitioned */
if (part->pmSig != PART_ENTRY_MAGIC) {
- msg = "DPME partition invalid";
osdep->macparts[0].pmSig = 0; /* make invalid */
goto hfs_done;
}