diff options
author | Jonathan Kim <jkm@hdfgroup.org> | 2010-05-21 20:12:22 (GMT) |
---|---|---|
committer | Jonathan Kim <jkm@hdfgroup.org> | 2010-05-21 20:12:22 (GMT) |
commit | a5ca9e6ba9f8588ca1a2cc2b88885a54ea3d27f8 (patch) | |
tree | 2d2fc8b735fee3361886acb1455469384b33cbfb /tools/lib/h5diff.c | |
parent | ff334a5952d524660e4d4c82ad823c16c8696bfd (diff) | |
download | hdf5-a5ca9e6ba9f8588ca1a2cc2b88885a54ea3d27f8.zip hdf5-a5ca9e6ba9f8588ca1a2cc2b88885a54ea3d27f8.tar.gz hdf5-a5ca9e6ba9f8588ca1a2cc2b88885a54ea3d27f8.tar.bz2 |
[svn-r18873] 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.
Tested:
jam, amani and linew
Diffstat (limited to 'tools/lib/h5diff.c')
-rw-r--r-- | tools/lib/h5diff.c | 4 |
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; |