From a9f39ff1e4b7c21a112cc0b7473cf20294fd22a3 Mon Sep 17 00:00:00 2001 From: Patrick Lu Date: Wed, 1 Sep 1999 10:55:10 -0500 Subject: [svn-r1624] forgot to actually chance the open to HDopen last time! --- src/H5FDsec2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v0.12