summaryrefslogtreecommitdiffstats
path: root/src/H5Lexternal.c
diff options
context:
space:
mode:
authorChris Hogan <chogan@hdfgroup.org>2019-10-28 21:24:54 (GMT)
committerChris Hogan <chogan@hdfgroup.org>2019-10-29 16:46:48 (GMT)
commitf8ab081b1f1abcbf76c151d7960ee97a556b4be9 (patch)
treed973514a5217823c70b29499f569dccb709afa7e /src/H5Lexternal.c
parentafd4b291315e39e3966eadaf8ae9894b30e9504e (diff)
downloadhdf5-f8ab081b1f1abcbf76c151d7960ee97a556b4be9.zip
hdf5-f8ab081b1f1abcbf76c151d7960ee97a556b4be9.tar.gz
hdf5-f8ab081b1f1abcbf76c151d7960ee97a556b4be9.tar.bz2
Use API context to store/retrieve LCPL when creating intermediate groups
Diffstat (limited to 'src/H5Lexternal.c')
-rw-r--r--src/H5Lexternal.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5Lexternal.c b/src/H5Lexternal.c
index 3c4ffcc..e075ed7 100644
--- a/src/H5Lexternal.c
+++ b/src/H5Lexternal.c
@@ -364,10 +364,13 @@ H5Lcreate_external(const char *file_name, const char *obj_name,
if(!link_name || !*link_name)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "no link name specified")
- /* Check the group access property list */
+ /* Get the link creation property list */
if(H5P_DEFAULT == lcpl_id)
lcpl_id = H5P_LINK_CREATE_DEFAULT;
+ /* Set the LCPL for the API context */
+ H5CX_set_lcpl(lcpl_id);
+
/* Get normalized copy of the link target */
if(NULL == (norm_obj_name = H5G_normalize(obj_name)))
HGOTO_ERROR(H5E_LINK, H5E_BADVALUE, FAIL, "can't normalize object name")