summaryrefslogtreecommitdiffstats
path: root/src/H5PLpath.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2019-07-10 16:22:32 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2019-07-10 16:22:32 (GMT)
commitc582df7538e71fd80915ef922b3edb530a66f70f (patch)
treeeb365e63284916c6e1a51e293d723075114958f0 /src/H5PLpath.c
parent22d78bdfa4d560a0b8a2dbb547574bfe61bf64f0 (diff)
downloadhdf5-c582df7538e71fd80915ef922b3edb530a66f70f.zip
hdf5-c582df7538e71fd80915ef922b3edb530a66f70f.tar.gz
hdf5-c582df7538e71fd80915ef922b3edb530a66f70f.tar.bz2
Revert path processing to fix daily test errors.
Diffstat (limited to 'src/H5PLpath.c')
-rw-r--r--src/H5PLpath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5PLpath.c b/src/H5PLpath.c
index 44d9cb9..e270c73 100644
--- a/src/H5PLpath.c
+++ b/src/H5PLpath.c
@@ -678,7 +678,7 @@ H5PL__find_plugin_in_path(const H5PL_search_params_t *search_params, hbool_t *fo
if (NULL == (path = (char *)H5MM_calloc(len)))
HGOTO_ERROR(H5E_PLUGIN, H5E_CANTALLOC, FAIL, "can't allocate memory for path")
- HDsnprintf(path, len, "%s%s%s", dir, H5PL_PATH_SEPARATOR, dp->d_name);
+ HDsnprintf(path, len, "%s/%s", dir, dp->d_name);
/* Get info for directory entry */
if (HDstat(path, &my_stat) == -1)