Don't warn if the rawoffset is zero, that is actually the best value it
could have.
This commit is contained in:
parent
bf6823c7b8
commit
0c30fa28a2
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user