summaryrefslogtreecommitdiffstats
path: root/disk-utils
diff options
context:
space:
mode:
authorSami Kerola2014-04-25 23:05:33 +0200
committerKarel Zak2014-05-06 10:08:51 +0200
commit506b4999916dae071a4368f137f807ae4f178a6e (patch)
treede7b0d89bc4edf3c08435dfe153e1119b1979de3 /disk-utils
parentmkswap, swaplabel: move version number to header (diff)
downloadkernel-qcow2-util-linux-506b4999916dae071a4368f137f807ae4f178a6e.tar.gz
kernel-qcow2-util-linux-506b4999916dae071a4368f137f807ae4f178a6e.tar.xz
kernel-qcow2-util-linux-506b4999916dae071a4368f137f807ae4f178a6e.zip
mkswap: remove legacy swap structure
If software archeolgists want to know how the old, and unused, swap header looked they can dig it from the revision history. [kzak@redhat.com: - use sizeof() for SWAP_HEADER_SIZE] Reference: 4c85aa3a4c26f2a2c33bf16960b548d5bbd5b4bf Signed-off-by: Sami Kerola <kerolasa@iki.fi> Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'disk-utils')
-rw-r--r--disk-utils/mkswap.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/disk-utils/mkswap.c b/disk-utils/mkswap.c
index cd96ad575..830b14c06 100644
--- a/disk-utils/mkswap.c
+++ b/disk-utils/mkswap.c
@@ -186,8 +186,7 @@ write_uuid_and_label(unsigned char *uuid, char *volume_name)
struct swap_header_v1_2 *h;
/* Sanity check */
- if (sizeof(struct swap_header_v1) !=
- sizeof(struct swap_header_v1_2)) {
+ if (sizeof(struct swap_header_v1_2) != SWAP_HEADER_SIZE) {
warnx(_("Bad swap header size, no label written."));
return;
}