summaryrefslogtreecommitdiffstats
path: root/tools/lib
diff options
context:
space:
mode:
authorJordan Henderson <jhenderson@hdfgroup.org>2020-03-26 20:26:39 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:31:56 (GMT)
commit1da485552833f8417dd0057d2daf6ece9851e412 (patch)
treea1ba429000415fcbef23bb59c9e37ef84e1950f1 /tools/lib
parent254388494a8e5568bfba5ddaf7eb01cba6b2e736 (diff)
downloadhdf5-1da485552833f8417dd0057d2daf6ece9851e412.zip
hdf5-1da485552833f8417dd0057d2daf6ece9851e412.tar.gz
hdf5-1da485552833f8417dd0057d2daf6ece9851e412.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 4f9328e..f0d22ef 100644
--- a/tools/lib/h5tools.c
+++ b/tools/lib/h5tools.c
@@ -644,10 +644,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 {