@@ -130,7 +130,7 @@ xlog_header_check_recover(xfs_mount_t *mp, xlog_rec_header_t *head)
int
xlog_header_check_mount(xfs_mount_t *mp, xlog_rec_header_t *head)
{
- if (platform_uuid_is_null(&head->h_fs_uuid)) return 0;
+ if (uuid_is_null(head->h_fs_uuid)) return 0;
if (header_check_uuid(mp, head)) {
/* bail out now or just carry on regardless */
if (print_exit)
@@ -2191,7 +2191,7 @@ _("cowextsize not supported without reflink support\n"));
* Copy features across to config structure now.
*/
cfg->sb_feat = cli->sb_feat;
- if (!platform_uuid_is_null(&cli->uuid))
+ if (!uuid_is_null(cli->uuid))
uuid_copy(cfg->uuid, cli->uuid);
}