summaryrefslogtreecommitdiffstats
path: root/src/H5PLpath.c
diff options
context:
space:
mode:
authorraylu-hdf <60487644+raylu-hdf@users.noreply.github.com>2023-02-20 14:53:52 (GMT)
committerGitHub <noreply@github.com>2023-02-20 14:53:52 (GMT)
commit7be4e913a8f52bee382cade11a3a1421d7d9aaea (patch)
tree462a362ddb1404ba919eabf14ab269a21fe71280 /src/H5PLpath.c
parentb3da28b731e50f63bb1004b016bdf7ef33c5328b (diff)
downloadhdf5-7be4e913a8f52bee382cade11a3a1421d7d9aaea.zip
hdf5-7be4e913a8f52bee382cade11a3a1421d7d9aaea.tar.gz
hdf5-7be4e913a8f52bee382cade11a3a1421d7d9aaea.tar.bz2
OESS-330/HDFFV-11282: Improve failure message when a VOL connector can't be loaded (#2481)
* OESS-330/HDFFV-11282: Improve failure message when a VOL connector can't be loaded. Made the error message clearer when the library can't find a plugin in the path table that contains the paths set by HDF5_PLUGIN_PATH and the default location and maybe set by H5PLxxx functions. * Committing clang-format changes --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/H5PLpath.c')
-rw-r--r--src/H5PLpath.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5PLpath.c b/src/H5PLpath.c
index 9842870..8ad00c3 100644
--- a/src/H5PLpath.c
+++ b/src/H5PLpath.c
@@ -854,7 +854,8 @@ H5PL__find_plugin_in_path(const H5PL_search_params_t *search_params, hbool_t *fo
/* Open the directory */
if (!(dirp = HDopendir(dir)))
- HGOTO_ERROR(H5E_PLUGIN, H5E_OPENERROR, FAIL, "can't open directory: %s", dir)
+ HGOTO_ERROR(H5E_PLUGIN, H5E_OPENERROR, FAIL, "can't open directory (%s). Please verify its existence",
+ dir)
/* Iterate through all entries in the directory */
while (NULL != (dp = HDreaddir(dirp))) {