From a7126a6a16e1383d131be453e9b8840a03e789b2 Mon Sep 17 00:00:00 2001 From: julian Date: Tue, 3 Oct 1995 11:12:50 +0000 Subject: remove the calls to DIOCWLABEL, as it isn't supported any more and the error message confuses the user. (just commented out foe now) --- sbin/fdisk/fdisk.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sbin/fdisk') diff --git a/sbin/fdisk/fdisk.c b/sbin/fdisk/fdisk.c index 6b3fb11..f712cf0 100644 --- a/sbin/fdisk/fdisk.c +++ b/sbin/fdisk/fdisk.c @@ -582,14 +582,18 @@ write_s0() * sector 0. (e.g. empty disk) */ flag = 1; +#ifdef NOT_NOW if (ioctl(fd, DIOCWLABEL, &flag) < 0) perror("ioctl DIOCWLABEL"); +#endif if (write_disk(0, (char *) mboot.bootinst) == -1) { fprintf(stderr, "%s: Can't write fdisk partition table\n", name); return -1; flag = 0; +#ifdef NOT_NOW (void) ioctl(fd, DIOCWLABEL, &flag); +#endif } } -- cgit v1.1