summaryrefslogtreecommitdiffstats
path: root/libblkid
diff options
context:
space:
mode:
authorKenneth Van Alstyne2018-12-18 03:21:32 +0100
committerKenneth Van Alstyne2018-12-18 03:21:32 +0100
commit36b0530e122a4c8102856175907d7ae086e3a4de (patch)
treec8e7b6eb12182b5d88af3aee5497c7150c445d72 /libblkid
parentUpdated BlueStore expected result (diff)
downloadkernel-qcow2-util-linux-36b0530e122a4c8102856175907d7ae086e3a4de.tar.gz
kernel-qcow2-util-linux-36b0530e122a4c8102856175907d7ae086e3a4de.tar.xz
kernel-qcow2-util-linux-36b0530e122a4c8102856175907d7ae086e3a4de.zip
Removed BlueStore VERSION information as it is gibberish
Diffstat (limited to 'libblkid')
-rw-r--r--libblkid/src/superblocks/bluestore.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libblkid/src/superblocks/bluestore.c b/libblkid/src/superblocks/bluestore.c
index 24c56f24a..22f54e163 100644
--- a/libblkid/src/superblocks/bluestore.c
+++ b/libblkid/src/superblocks/bluestore.c
@@ -27,7 +27,6 @@
struct bluestore_phdr {
uint8_t magic[BLUESTORE_MAGIC_L];
- uint32_t version;
} __attribute__((packed));
static int probe_bluestore(blkid_probe pr, const struct blkid_idmag *mag)
@@ -38,7 +37,6 @@ static int probe_bluestore(blkid_probe pr, const struct blkid_idmag *mag)
if (header == NULL)
return errno ? -errno : 1;
- blkid_probe_sprintf_version(pr, "%u", le32_to_cpu(header->version));
return 0;
}