Skip to content

Commit

Permalink
Allow default backing FAPL for onion VFD
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjala committed Dec 10, 2024
1 parent 2878de0 commit cdea6c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/H5FDonion.c
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ H5Pset_fapl_onion(hid_t fapl_id, const H5FD_onion_fapl_info_t *fa)
HGOTO_ERROR(H5E_VFL, H5E_BADVALUE, FAIL, "invalid backing fapl id");
}
else {
if (NULL == (backing_fapl = H5P_object_verify(fa->backing_fapl_id, H5P_FILE_ACCESS, false)))
if (NULL == (backing_fapl = H5P_object_verify(fa->backing_fapl_id, H5P_FILE_ACCESS, true)))
HGOTO_ERROR(H5E_VFL, H5E_BADVALUE, FAIL, "invalid backing fapl id");
}

Expand Down

0 comments on commit cdea6c2

Please sign in to comment.