diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-10-04 22:40:06 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-10-04 22:40:06 (GMT) |
commit | 4d8a0f4c54b95c5b865ebdee6e82cf42c7b44c5a (patch) | |
tree | 8f519c0c132d0a6741ac1844368eceec347d7b6f /test/links.c | |
parent | 4dea870b6a383f57494af9a729dacf7f00537435 (diff) | |
download | hdf5-4d8a0f4c54b95c5b865ebdee6e82cf42c7b44c5a.zip hdf5-4d8a0f4c54b95c5b865ebdee6e82cf42c7b44c5a.tar.gz hdf5-4d8a0f4c54b95c5b865ebdee6e82cf42c7b44c5a.tar.bz2 |
[svn-r12719] Configured external links to (by default) use the FAPL of the parent
file, rather than H5P_DEFAULT.
This lets them be used with stdio and directio drivers.
Tested on mir and juniper (check-vfd takes a long time!).
Diffstat (limited to 'test/links.c')
-rw-r--r-- | test/links.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/links.c b/test/links.c index 1d6b329..2290e69 100644 --- a/test/links.c +++ b/test/links.c @@ -5175,7 +5175,7 @@ main(void) envval = HDgetenv("HDF5_DRIVER"); if(envval == NULL) envval = "nomatch"; - if(HDstrcmp(envval, "core") && HDstrcmp(envval, "split") && HDstrcmp(envval, "multi") && HDstrcmp(envval, "family") && HDstrcmp(envval, "stdio")) { + if(HDstrcmp(envval, "core") && HDstrcmp(envval, "split") && HDstrcmp(envval, "multi") && HDstrcmp(envval, "family")) { hid_t fapl, fapl2; /* File access property lists */ int nerrors = 0; hbool_t new_format; /* Whether to use the new format or not */ |