Fix the WARNING for wrong rawoffset, I tested incompatible units.

Approved by:	re/jhb
This commit is contained in:
Poul-Henning Kamp 2003-05-06 19:36:13 +00:00
parent 6e52134c70
commit c9e629297a

View File

@ -142,10 +142,10 @@ g_bsd_modify(struct g_geom *gp, u_char *label)
rawoffset = 0;
}
if (rawoffset != 0 && (off_t)rawoffset * dl.d_secsize != ms->mbroffset)
if (rawoffset != 0 && (off_t)rawoffset != ms->mbroffset)
printf("WARNING: Expected rawoffset %jd, found %jd\n",
(intmax_t)ms->mbroffset/dl.d_secsize,
(intmax_t)ms->rawoffset);
(intmax_t)rawoffset/dl.d_secsize);
/* Don't munge open partitions. */
for (i = 0; i < dl.d_npartitions; i++) {