diff options
author | Jonathan Kim <jkm@hdfgroup.org> | 2011-08-16 20:41:47 (GMT) |
---|---|---|
committer | Jonathan Kim <jkm@hdfgroup.org> | 2011-08-16 20:41:47 (GMT) |
commit | e703a6a2a4c6e6ee443d2e2af08fe61479789f79 (patch) | |
tree | aae3f2453e6c8a536c2596868ebfde3fdf20dec5 /tools/lib/h5tools_utils.c | |
parent | 8d80bf4a93a2de494e710eb9719483178ad215e8 (diff) | |
download | hdf5-e703a6a2a4c6e6ee443d2e2af08fe61479789f79.zip hdf5-e703a6a2a4c6e6ee443d2e2af08fe61479789f79.tar.gz hdf5-e703a6a2a4c6e6ee443d2e2af08fe61479789f79.tar.bz2 |
[svn-r21236] Purpose:
Work for:
HDFFV-7515 - GMQS: h5unjam - incorrect help page and should display when
no file is given.
and
HDFFV-5941 - h5jam: specifying a user block file with a proper HDF5 magic
number will result in a corrupted HDF5 file.
Description:
- Revised command help pages of h5jam and h5unjam. The descriptions
were not up to date and some were missing. (HDFFV-7515)
- Fixed h5jam not to allow specifying an HDF5 formatted file as input
file for -u (user block file) option, because the original HDF5 file
will not be accessible if allows. (HDFFV-5941)
Tested:
jam (linux32-LE), koala (linux64-LE), heiwa (linuxppc64-BE), tejeda (mac32-LE), linew (solaris-BE), Cmake (jam, Wondows)
Diffstat (limited to 'tools/lib/h5tools_utils.c')
-rw-r--r-- | tools/lib/h5tools_utils.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/lib/h5tools_utils.c b/tools/lib/h5tools_utils.c index ee6d5d2..ab8536f 100644 --- a/tools/lib/h5tools_utils.c +++ b/tools/lib/h5tools_utils.c @@ -178,6 +178,24 @@ warn_msg(const char *fmt, ...) va_end(ap); } +/*------------------------------------------------------------------------- + * Function: help_ref_msg + * + * Purpose: Print a message to refer help page + * + * Return: Nothing + * + * Modifications: + * + *------------------------------------------------------------------------- + */ +void +help_ref_msg(FILE *output) +{ + HDfprintf(output, "Try '-h' or '--help' for more information or "); + HDfprintf(output, "see the <%s> entry in the 'HDF5 Reference Manual'.\n",h5tools_getprogname()); +} + /*------------------------------------------------------------------------- * Function: get_option |