summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-08-21 19:37:48 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-08-21 19:37:48 (GMT)
commit07a7d67d2ea3363ffc77a7120f2bbafe859dfcce (patch)
tree3ff83bb4f91ee578e3f8c16074770f75506c3055 /tools
parent1048edca148cacc396fade45e2782e5d18b8d546 (diff)
downloadhdf5-07a7d67d2ea3363ffc77a7120f2bbafe859dfcce.zip
hdf5-07a7d67d2ea3363ffc77a7120f2bbafe859dfcce.tar.gz
hdf5-07a7d67d2ea3363ffc77a7120f2bbafe859dfcce.tar.bz2
[svn-r4403]
Purpose: Bug Fix Description: Object IDs command-line options weren't being picked up. Solution: The wrong flag was being checked for. Changed the flag from "v" to "i", which is what the documentation says. Platforms tested: Linux
Diffstat (limited to 'tools')
-rw-r--r--tools/h5dump/h5dump.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c
index 529afa1..808e720 100644
--- a/tools/h5dump/h5dump.c
+++ b/tools/h5dump/h5dump.c
@@ -392,9 +392,9 @@ struct handler_t {
*/
#if 0
/* binary: not implemented yet */
-static const char *s_opts = "hbBHvVa:d:f:g:l:t:w:xD:o:s:S:c:k:";
+static const char *s_opts = "hbBHiVa:d:f:g:l:t:w:xD:o:s:S:c:k:";
#else
-static const char *s_opts = "hBHvVa:d:f:g:l:t:w:xD:o:s:S:c:k:";
+static const char *s_opts = "hBHiVa:d:f:g:l:t:w:xD:o:s:S:c:k:";
#endif /* 0 */
static struct long_options l_opts[] = {
{ "help", no_arg, 'h' },
@@ -2435,7 +2435,7 @@ parse_start:
display_data = FALSE;
last_was_dset = FALSE;
break;
- case 'v':
+ case 'i':
display_oid = TRUE;
last_was_dset = FALSE;
break;