Replace usage of some standard library functions with HD- versions

This commit is contained in:
Jordan Henderson
2020-03-26 15:26:39 -05:00
parent fa087c3919
commit 6d514db55a
2 changed files with 4 additions and 4 deletions

View File

@@ -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 {