diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2020-04-17 00:07:21 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:35:18 (GMT) |
commit | 58dfaafcceabeb054b90034838294d9a1ae339ac (patch) | |
tree | 9fd3a7f9dca546ec26af6849a9bc880c360a55ef /tools/src/h5stat/h5stat.c | |
parent | 6609048ecfaf5409391758abf0d873ecebab160d (diff) | |
download | hdf5-58dfaafcceabeb054b90034838294d9a1ae339ac.zip hdf5-58dfaafcceabeb054b90034838294d9a1ae339ac.tar.gz hdf5-58dfaafcceabeb054b90034838294d9a1ae339ac.tar.bz2 |
Fixed problems with S3 and HDFS VFDs.
* Updated info struct parameter to correct info_string
* Fixed Makefile.am where the S3 VFD was listed twice, causing
duplicated symbols errors.
Diffstat (limited to 'tools/src/h5stat/h5stat.c')
-rw-r--r-- | tools/src/h5stat/h5stat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/src/h5stat/h5stat.c b/tools/src/h5stat/h5stat.c index aae5416..bebe443 100644 --- a/tools/src/h5stat/h5stat.c +++ b/tools/src/h5stat/h5stat.c @@ -1822,7 +1822,7 @@ main(int argc, const char *argv[]) if (!HDstrcmp(drivername, drivernames[ROS3_VFD_IDX])) { #ifdef H5_HAVE_ROS3_VFD - fapl_info.info = (void *)&ros3_fa; + fapl_info.info_string = (void *)&ros3_fa; #else error_msg("Read-Only S3 VFD not enabled.\n"); goto done; @@ -1830,7 +1830,7 @@ main(int argc, const char *argv[]) } else if (!HDstrcmp(drivername, drivernames[HDFS_VFD_IDX])) { #ifdef H5_HAVE_LIBHDFS - fapl_info.info = (void *)&hdfs_fa; + fapl_info.info_string = (void *)&hdfs_fa; #else error_msg("HDFS VFD not enabled.\n"); goto done; |