diff options
author | raylu-hdf <60487644+raylu-hdf@users.noreply.github.com> | 2022-04-05 02:50:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-05 02:50:31 (GMT) |
commit | 715cf1a29b14abd81b4a03421fc742d6f4542fd0 (patch) | |
tree | 504aec1b089bc64a031969efd47132a208868469 | |
parent | f2c0f52480c550326d5b1adec685288cd73663eb (diff) | |
parent | 8271e5bae9caa1b3a3a5cb8dc3800bbe2f26d3ac (diff) | |
download | hdf5-715cf1a29b14abd81b4a03421fc742d6f4542fd0.zip hdf5-715cf1a29b14abd81b4a03421fc742d6f4542fd0.tar.gz hdf5-715cf1a29b14abd81b4a03421fc742d6f4542fd0.tar.bz2 |
Merge pull request #1579 from HDFGroup/raylu_onion_vfd_2
Minor updates for h5diff. No review needed.
-rw-r--r-- | tools/src/h5diff/h5diff_common.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/tools/src/h5diff/h5diff_common.c b/tools/src/h5diff/h5diff_common.c index 452af3d..fba73a4 100644 --- a/tools/src/h5diff/h5diff_common.c +++ b/tools/src/h5diff/h5diff_common.c @@ -49,9 +49,9 @@ static struct h5_long_options l_opts[] = {{"help", no_arg, 'h'}, {"vol-name-2", require_arg, '5'}, {"vol-info-2", require_arg, '6'}, {"vfd-name-1", require_arg, '7'}, - {"vfd-value-1", require_arg, '8'}, + {"vfd-info-1", require_arg, '8'}, {"vfd-name-2", require_arg, '9'}, - {"vfd-value-2", require_arg, '0'}, + {"vfd-info-2", require_arg, '0'}, {NULL, 0, '\0'}}; static H5FD_onion_fapl_info_t onion_fa_g_1 = { @@ -720,6 +720,16 @@ usage(void) PRINTVALSTREAM(rawoutstream, " --vol-info-2 VOL-specific info to pass to the VOL connector used for\n"); PRINTVALSTREAM(rawoutstream, " opening the second HDF5 file specified\n"); + PRINTVALSTREAM(rawoutstream, + " --vfd-name-1 Name of the VFD driver to use for opening the first\n"); + PRINTVALSTREAM(rawoutstream, " HDF5 file specified\n"); + PRINTVALSTREAM(rawoutstream, + " --vfd-info-1 VFD-specific info to open the first HDF5 file specified\n"); + PRINTVALSTREAM(rawoutstream, + " --vfd-name-2 Name of the VFD driver to use for opening the second\n"); + PRINTVALSTREAM(rawoutstream, " HDF5 file specified\n"); + PRINTVALSTREAM(rawoutstream, + " --vfd-info-2 VFD-specific info to open the second HDF5 file specified\n"); PRINTVALSTREAM(rawoutstream, " --follow-symlinks\n"); PRINTVALSTREAM(rawoutstream, " Follow symbolic links (soft links and external links and compare the)\n"); |