[svn-r18875] 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 1.8 branch r18874.

Tested:
    jam, amani
This commit is contained in:
Jonathan Kim
2010-05-21 16:04:21 -05:00
parent 79a7bb647d
commit d7b9893967
16 changed files with 143 additions and 143 deletions

View File

@@ -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;