summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5diff.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-04-19 12:44:56 (GMT)
committerGitHub <noreply@github.com>2023-04-19 12:44:56 (GMT)
commit39099bd397ac8d27965b70e7bfc644abc27fd5df (patch)
tree2f1cbf4a64950b762ec157c329c1dab93dd55725 /tools/lib/h5diff.c
parent7d24d61ea26c522f673c3e97ae68aa1f3f530f01 (diff)
downloadhdf5-39099bd397ac8d27965b70e7bfc644abc27fd5df.zip
hdf5-39099bd397ac8d27965b70e7bfc644abc27fd5df.tar.gz
hdf5-39099bd397ac8d27965b70e7bfc644abc27fd5df.tar.bz2
Add no subsets option to h5diff like h5dump (#2760)
* reorder argument in alpha order
Diffstat (limited to 'tools/lib/h5diff.c')
-rw-r--r--tools/lib/h5diff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/lib/h5diff.c b/tools/lib/h5diff.c
index a0cd8db..9b49be9 100644
--- a/tools/lib/h5diff.c
+++ b/tools/lib/h5diff.c
@@ -181,7 +181,7 @@ is_exclude_path(char *path, h5trav_type_t type, diff_opt_t *opts)
/* search objects in exclude list */
while (NULL != exclude_path_ptr) {
- /* if exclude path is is group, exclude its members as well */
+ /* if exclude path is in group, exclude its members as well */
if (exclude_path_ptr->obj_type == H5TRAV_TYPE_GROUP) {
ret_cmp = HDstrncmp(exclude_path_ptr->obj_path, path, HDstrlen(exclude_path_ptr->obj_path));
if (ret_cmp == 0) { /* found matching members */
@@ -245,7 +245,7 @@ is_exclude_attr(const char *path, h5trav_type_t type, diff_opt_t *opts)
/* search objects in exclude list */
while (NULL != exclude_ptr) {
- /* if exclude path is is group, exclude its members as well */
+ /* if exclude path is in group, exclude its members as well */
if (exclude_ptr->obj_type == H5TRAV_TYPE_GROUP) {
ret_cmp = HDstrncmp(exclude_ptr->obj_path, path, HDstrlen(exclude_ptr->obj_path));
if (ret_cmp == 0) { /* found matching members */