diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-06-14 03:35:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-06-14 03:35:31 +0000 |
commit | 36bf49767d867ca231436ddd0a357a8103dfc8e4 (patch) | |
tree | def8d0952045493ff17876b5f1bf825b4fe8968b /sys/arch/mips64 | |
parent | ccae2e217bbeef74b3dc4cb0a9d5eff162c0e069 (diff) |
set the prototype disklabel to version 1
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r-- | sys/arch/mips64/mips64/disksubr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/mips64/mips64/disksubr.c b/sys/arch/mips64/mips64/disksubr.c index 726e05737d0..f5e261f4a1a 100644 --- a/sys/arch/mips64/mips64/disksubr.c +++ b/sys/arch/mips64/mips64/disksubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: disksubr.c,v 1.54 2007/06/14 03:29:34 deraadt Exp $ */ +/* $OpenBSD: disksubr.c,v 1.55 2007/06/14 03:35:29 deraadt Exp $ */ /* * Copyright (c) 1999 Michael Shalayeff @@ -151,6 +151,7 @@ readdisklabel(dev_t dev, void (*strat)(struct buf *), if (DL_GETPSIZE(&lp->d_partitions[RAW_PART]) == 0) DL_SETPSIZE(&lp->d_partitions[RAW_PART], DL_GETDSIZE(lp)); DL_SETPOFFSET(&lp->d_partitions[RAW_PART], 0); + lp->d_version = 1; minilabel = fallbacklabel = *lp; /* get a buffer and initialize it */ |