summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5diff.c
diff options
context:
space:
mode:
authorJonathan Kim <jkm@hdfgroup.org>2010-05-21 20:31:03 (GMT)
committerJonathan Kim <jkm@hdfgroup.org>2010-05-21 20:31:03 (GMT)
commit6cd165398b4f82005715bf50b3c9e10ebc9a148e (patch)
tree49c6b13f6d88639508a69779803589514b618c6f /tools/lib/h5diff.c
parent1fb2abb7f8282957194dad1f6b849fcc951260fc (diff)
downloadhdf5-6cd165398b4f82005715bf50b3c9e10ebc9a148e.zip
hdf5-6cd165398b4f82005715bf50b3c9e10ebc9a148e.tar.gz
hdf5-6cd165398b4f82005715bf50b3c9e10ebc9a148e.tar.bz2
[svn-r18874] Purpose:
Rename '--follow-links' to '--follow-symlinks' Description: The '--follow-links' option is to follow symbolic links (soft and external). Make the name more intuitive and specific to the feature. Merged from hdf5 trunk r18873. Tested: jam
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 5f18ab3..c3d74b5 100644
--- a/tools/lib/h5diff.c
+++ b/tools/lib/h5diff.c
@@ -209,10 +209,10 @@ static int is_valid_options(diff_opt_t *options)
}
/* -------------------------------------------------------
- * only allow --no-dangling-links along with --follow-links */
+ * only allow --no-dangling-links along with --follow-symlinks */
if(options->no_dangle_links && !options->follow_links)
{
- parallel_print("Error: --no-dangling-links must be used along with --follow-links option.\n");
+ parallel_print("Error: --no-dangling-links must be used along with --follow-symlinks option.\n");
options->err_stat=1;
ret = 0;
goto out;