diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2006-10-30 13:48:54 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2006-10-30 13:48:54 (GMT) |
commit | b27b4889268552a1b02f06e5c26b470c31621d5e (patch) | |
tree | 7d5019fe7fbae9fa75c72da3f0a6203f4fcd3725 /src | |
parent | 02bba16ee0b5c9da300608896d1ea9bc97c9ab1a (diff) | |
download | hdf5-b27b4889268552a1b02f06e5c26b470c31621d5e.zip hdf5-b27b4889268552a1b02f06e5c26b470c31621d5e.tar.gz hdf5-b27b4889268552a1b02f06e5c26b470c31621d5e.tar.bz2 |
[svn-r12824] O_DIRECT flag was accidentally commented out in previous checkin. Put it back in.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5FDdirect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDdirect.c b/src/H5FDdirect.c index 0daf6d9..431bcc7 100644 --- a/src/H5FDdirect.c +++ b/src/H5FDdirect.c @@ -514,7 +514,7 @@ H5FD_direct_open(const char *name, unsigned flags, hid_t fapl_id, haddr_t maxadd if (H5F_ACC_EXCL & flags) o_flags |= O_EXCL; /* Flag for Direct I/O */ - /*o_flags |= O_DIRECT;*/ /*change it back!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/ + o_flags |= O_DIRECT; /* Open the file */ if ((fd=HDopen(name, o_flags, 0666))<0) |