summaryrefslogtreecommitdiffstats
path: root/src/H5PLpath.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2017-11-20 19:32:17 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2017-11-20 19:32:17 (GMT)
commitfe417b3025c475b15c0247f7ee452123e8f64dc2 (patch)
tree3c1a2423acbe136af0caa9631fd6316944a3bbe2 /src/H5PLpath.c
parentf3fd3f293f2734fea98f508f190bf531edc72f7a (diff)
parent3b1728736840e25d5cd1b048f09025e7c0f22123 (diff)
downloadhdf5-fe417b3025c475b15c0247f7ee452123e8f64dc2.zip
hdf5-fe417b3025c475b15c0247f7ee452123e8f64dc2.tar.gz
hdf5-fe417b3025c475b15c0247f7ee452123e8f64dc2.tar.bz2
Merge pull request #788 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:H5Z_H5PL_normalize to develop
* commit '3b1728736840e25d5cd1b048f09025e7c0f22123': Brings H5Z and H5PL packages in sync with VOL integration branch.
Diffstat (limited to 'src/H5PLpath.c')
-rw-r--r--src/H5PLpath.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5PLpath.c b/src/H5PLpath.c
index 435802a..d8e82f8 100644
--- a/src/H5PLpath.c
+++ b/src/H5PLpath.c
@@ -689,7 +689,7 @@ H5PL__find_plugin_in_path(const H5PL_search_params_t *search_params, hbool_t *fo
continue;
/* attempt to open the dynamic library as a filter library */
- if (H5PL__open(path, search_params->type, search_params->id, found, plugin_info) < 0)
+ if (H5PL__open(path, search_params->type, search_params->key, found, plugin_info) < 0)
HGOTO_ERROR(H5E_PLUGIN, H5E_CANTGET, FAIL, "search in directory failed")
if (*found)
HGOTO_DONE(SUCCEED)
@@ -755,7 +755,7 @@ H5PL__find_plugin_in_path(const H5PL_search_params_t *search_params, hbool_t *fo
continue;
/* attempt to open the dynamic library as a filter library */
- if (H5PL__open(path, search_params->type, search_params->id, found, plugin_info) < 0)
+ if (H5PL__open(path, search_params->type, search_params->search_key.id, found, plugin_info) < 0)
HGOTO_ERROR(H5E_PLUGIN, H5E_CANTGET, FAIL, "search in directory failed")
if (*found)
HGOTO_DONE(SUCCEED)