From dcca7846c0f353780332882d2b94b7936e447850 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 13 Feb 2018 10:30:39 +0100 Subject: [PATCH] libblkid: make mpool independent on libuuid Signed-off-by: Karel Zak --- libblkid/src/superblocks/mpool.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libblkid/src/superblocks/mpool.c b/libblkid/src/superblocks/mpool.c index 5f30fd496..da5229b96 100644 --- a/libblkid/src/superblocks/mpool.c +++ b/libblkid/src/superblocks/mpool.c @@ -13,14 +13,12 @@ #include "crc32c.h" #include "superblocks.h" -#include - #define MAX_MPOOL_NAME_LEN 32 struct omf_sb_descriptor { uint64_t osb_magic; uint8_t osb_name[MAX_MPOOL_NAME_LEN]; - uuid_t osb_poolid; /* UUID of pool this drive belongs to */ + unsigned char osb_poolid[16]; /* UUID of pool this drive belongs to */ uint16_t osb_vers; uint32_t osb_gen; uint32_t osb_cksum1; /* crc32c of the preceding fields */