From 0c30fa28a20a4d1c0ff500aea823c751c38aa496 Mon Sep 17 00:00:00 2001 From: phk Date: Mon, 5 May 2003 08:30:59 +0000 Subject: [PATCH] Don't warn if the rawoffset is zero, that is actually the best value it could have. --- sys/geom/geom_bsd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/geom/geom_bsd.c b/sys/geom/geom_bsd.c index 2fe2db6202a9..3adc4a9e31d3 100644 --- a/sys/geom/geom_bsd.c +++ b/sys/geom/geom_bsd.c @@ -142,7 +142,7 @@ g_bsd_modify(struct g_geom *gp, u_char *label) rawoffset = 0; } - if ((off_t)rawoffset * dl.d_secsize != ms->mbroffset) + if (rawoffset != 0 && (off_t)rawoffset * dl.d_secsize != ms->mbroffset) printf("WARNING: Expected rawoffset %jd, found %jd\n", (intmax_t)ms->mbroffset/dl.d_secsize, (intmax_t)ms->rawoffset);