[svn-r14283] Description:

Open external link file with read-only access, to avoid permissions
issue in certain circumstances.

Tested on:
	FreeBSD/32 6.2 (duty) w/read-only testfile
This commit is contained in:
Quincey Koziol 2007-11-24 11:36:01 -05:00
parent 3c4b177198
commit 083357dad3

View File

@ -841,7 +841,6 @@ test_4 (hid_t fapl)
hid_t fid, gid, xid, xid2;
char filename[1024]; /*file name */
char pathname[1024];
char linked_pathname[1024];
char *srcdir = getenv("srcdir"); /*where the src code is located*/
const char *envval = NULL;
@ -879,7 +878,7 @@ test_4 (hid_t fapl)
goto error;
/* Reopen the file */
if((fid = H5Fopen(filename, H5F_ACC_RDWR, fapl)) < 0)
if((fid = H5Fopen(filename, H5F_ACC_RDONLY, fapl)) < 0)
goto error;
/* Open the external link */