diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-06-07 17:39:57 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 2000-06-07 17:39:57 (GMT) |
commit | 6e7c3212d378952f17255a38ddb8c69f77e20e42 (patch) | |
tree | f96d1ed88bfc3d49348166637950ce7ecf532520 | |
parent | 223ddb1a9a195c9043a34454d1bff3f81c191ba4 (diff) | |
download | hdf5-6e7c3212d378952f17255a38ddb8c69f77e20e42.zip hdf5-6e7c3212d378952f17255a38ddb8c69f77e20e42.tar.gz hdf5-6e7c3212d378952f17255a38ddb8c69f77e20e42.tar.bz2 |
[svn-r2359] added the comments back to the part of the code that is setting up the file
drivers array.
-rw-r--r-- | tools/h5tools.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/h5tools.c b/tools/h5tools.c index 9011a6e..71948b6 100644 --- a/tools/h5tools.c +++ b/tools/h5tools.c @@ -2253,6 +2253,11 @@ hid_t H5ToolsFopen(char* fname, char* drivername){ driver_t driver[NDRIVERS]; /*taken from h5ls*/ + /* + * Build a list of file access property lists which we should try when + * opening the file. Eventually we'd like some way for the user to + * augment/replace this list interactively. + */ driver[ndrivers].name = "sec2"; driver[ndrivers].fapl = H5P_DEFAULT; ndrivers++; |