mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r4402]
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
This commit is contained in:
parent
34e312e7c6
commit
8b0a3c5c1f
@ -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' },
|
||||
@ -2412,7 +2412,7 @@ parse_start:
|
||||
display_data = FALSE;
|
||||
last_was_dset = FALSE;
|
||||
break;
|
||||
case 'v':
|
||||
case 'i':
|
||||
display_oid = TRUE;
|
||||
last_was_dset = FALSE;
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user