summaryrefslogtreecommitdiffstats
path: root/tools/lib
diff options
context:
space:
mode:
authorJordan Henderson <jhenderson@hdfgroup.org>2020-03-26 20:26:39 (GMT)
committerJordan Henderson <jhenderson@hdfgroup.org>2020-03-26 20:26:39 (GMT)
commit6d514db55a2e200c00a30edae3ec682dd6842eeb (patch)
treeab69fb79d96a91d6a22e7325f402b3be89857138 /tools/lib
parentfa087c39199fccc1686b122e67b56e06c8fbe313 (diff)
downloadhdf5-6d514db55a2e200c00a30edae3ec682dd6842eeb.zip
hdf5-6d514db55a2e200c00a30edae3ec682dd6842eeb.tar.gz
hdf5-6d514db55a2e200c00a30edae3ec682dd6842eeb.tar.bz2
Replace usage of some standard library functions with HD- versions
Diffstat (limited to 'tools/lib')
-rw-r--r--tools/lib/h5tools.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/h5tools.c b/tools/lib/h5tools.c
index 57e537d..f38cf72 100644
--- a/tools/lib/h5tools.c
+++ b/tools/lib/h5tools.c
@@ -591,10 +591,10 @@ h5tools_set_vol_fapl(hid_t fapl, h5tools_get_fapl_info_t *get_info)
}
else {
/* Check for VOL connectors that ship with the library */
- if (!strcmp(get_info->u.name, H5VL_NATIVE_NAME)) {
+ if (!HDstrcmp(get_info->u.name, H5VL_NATIVE_NAME)) {
connector_id = H5VL_NATIVE;
}
- else if (!strcmp(get_info->u.name, H5VL_PASSTHRU_NAME)) {
+ else if (!HDstrcmp(get_info->u.name, H5VL_PASSTHRU_NAME)) {
connector_id = H5VL_PASSTHRU;
}
else {