diff options
author | Kenneth Van Alstyne | 2018-12-18 03:21:32 +0100 |
---|---|---|
committer | Kenneth Van Alstyne | 2018-12-18 03:21:32 +0100 |
commit | 36b0530e122a4c8102856175907d7ae086e3a4de (patch) | |
tree | c8e7b6eb12182b5d88af3aee5497c7150c445d72 /libblkid | |
parent | Updated BlueStore expected result (diff) | |
download | kernel-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.c | 2 |
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; } |