diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-03-30 07:52:33 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-03-30 07:52:33 +0000 |
commit | bf0f94ab5eae936591e29e8f7d2a371fea208c3d (patch) | |
tree | 67ef3a5c29b016573a5d0466f97bff6a68b38d95 /sys/arch/mac68k | |
parent | 58a4d9051f44de59c0b328bef84258c7ad009269 (diff) |
first approximation: spoof UDF filesystem disklabels when we see them.
it is likely a slight bug or two will sneak in with this, so everyone
please keep an eye out on your disklabels
Diffstat (limited to 'sys/arch/mac68k')
-rw-r--r-- | sys/arch/mac68k/mac68k/disksubr.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/mac68k/mac68k/disksubr.c b/sys/arch/mac68k/mac68k/disksubr.c index b7349ad027b..01671856ac8 100644 --- a/sys/arch/mac68k/mac68k/disksubr.c +++ b/sys/arch/mac68k/mac68k/disksubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: disksubr.c,v 1.26 2004/12/26 22:13:45 miod Exp $ */ +/* $OpenBSD: disksubr.c,v 1.27 2005/03/30 07:52:32 deraadt Exp $ */ /* $NetBSD: disksubr.c,v 1.22 1997/11/26 04:18:20 briggs Exp $ */ /* @@ -425,6 +425,10 @@ readdisklabel(dev, strat, lp, osdep, spoofonly) if (msg != NULL && iso_disklabelspoof(dev, strat, lp) == 0) msg = NULL; #endif +#if defined(UDF) + if (msg && udf_disklabelspoof(dev, strat, lp) == 0) + msg = NULL; +#endif bp->b_flags |= B_INVAL; brelse(bp); |