From 56091404e85973cb405b9e03d2157364e96a4e0c Mon Sep 17 00:00:00 2001 From: phk Date: Wed, 4 Jun 2003 05:25:04 +0000 Subject: Give ia64 the exact same semantics as i386 with respect to non-512 byte sector devices. --- sbin/bsdlabel/bsdlabel.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sbin') diff --git a/sbin/bsdlabel/bsdlabel.c b/sbin/bsdlabel/bsdlabel.c index 97e5e32..34ccc88 100644 --- a/sbin/bsdlabel/bsdlabel.c +++ b/sbin/bsdlabel/bsdlabel.c @@ -177,7 +177,8 @@ main(int argc, char *argv[]) bbsize = 8192; alphacksum = 1; } else if (!strcmp(optarg, "ia64")) { - labeloffset = 512; + labelsoffset = 1; + labeloffset = 0; bbsize = 8192; alphacksum = 0; } else { -- cgit v1.1