From: Karel Zak Date: Fri, 3 Nov 2017 18:34:49 +0000 (+0100) Subject: sfdisk: create empty label on 'write' command X-Git-Tag: v2.32-rc1~229 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9d4081cd6d5531145278f59d52bbb6a1d6d1db9b;p=thirdparty%2Futil-linux.git sfdisk: create empty label on 'write' command Addresses: https://github.com/karelzak/util-linux/issues/528 Signed-off-by: Karel Zak --- diff --git a/disk-utils/sfdisk.c b/disk-utils/sfdisk.c index ac4f711066..d769ed8db0 100644 --- a/disk-utils/sfdisk.c +++ b/disk-utils/sfdisk.c @@ -1776,7 +1776,7 @@ static int command_fdisk(struct sfdisk *sf, int argc, char **argv) } while (1); /* create empty disk label if label, but no partition specified */ - if (rc == SFDISK_DONE_EOF && created == 0 + if ((rc == SFDISK_DONE_EOF || rc == SFDISK_DONE_WRITE) && created == 0 && fdisk_script_has_force_label(dp) == 1 && fdisk_table_get_nents(tb) == 0 && fdisk_script_get_header(dp, "label")) {