From 8c401bb94d5ca0011ca7df09f6f8c8fd51bc9d25 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Wed, 4 Jun 2003 05:25:04 +0000 Subject: [PATCH] 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(-) diff --git a/sbin/bsdlabel/bsdlabel.c b/sbin/bsdlabel/bsdlabel.c index 97e5e3218489..34ccc8807439 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 {