diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-09-01 15:55:10 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-09-01 15:55:10 (GMT) |
commit | a9f39ff1e4b7c21a112cc0b7473cf20294fd22a3 (patch) | |
tree | 5110335de5f0d60a299bcbd639bf541338782bd1 /src/H5FDsec2.c | |
parent | 49a5b338dd2bf9fca14348dd4192736edf7ce88f (diff) | |
download | hdf5-a9f39ff1e4b7c21a112cc0b7473cf20294fd22a3.zip hdf5-a9f39ff1e4b7c21a112cc0b7473cf20294fd22a3.tar.gz hdf5-a9f39ff1e4b7c21a112cc0b7473cf20294fd22a3.tar.bz2 |
[svn-r1624] forgot to actually chance the open to HDopen last time!
Diffstat (limited to 'src/H5FDsec2.c')
-rw-r--r-- | src/H5FDsec2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDsec2.c b/src/H5FDsec2.c index b0ae7dc..2819300 100644 --- a/src/H5FDsec2.c +++ b/src/H5FDsec2.c @@ -260,7 +260,7 @@ H5FD_sec2_open(const char *name, unsigned flags, hid_t fapl_id/*unused*/, if (H5F_ACC_EXCL & flags) o_flags |= O_EXCL; /* Open the file */ - if ((fd=open(name, o_flags, 0666))<0) return NULL; + if ((fd=HDopen(name, o_flags, 0666))<0) return NULL; if (fstat(fd, &sb)<0) { close(fd); return NULL; |