summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlrknox <lrknox>2017-04-15 13:17:10 (GMT)
committerlrknox <lrknox>2017-04-15 13:17:10 (GMT)
commit49cded79ce4fed1fa775c3c3187bc583307e1166 (patch)
treeab544d25500099c9ab486e7846a2b8f233a8c26d /src
parentb9a27fddaa3043684b0137d30b6ec80e7f7d6b52 (diff)
downloadhdf5-49cded79ce4fed1fa775c3c3187bc583307e1166.zip
hdf5-49cded79ce4fed1fa775c3c3187bc583307e1166.tar.gz
hdf5-49cded79ce4fed1fa775c3c3187bc583307e1166.tar.bz2
Add new files in release_docs to MANIFEST.
Cimmit changes to Makefile.in(s) and H5PL.c that resulted from running autogen.sh. Conflicts: README.txt c++/src/Makefile.in fortran/src/Makefile.in hl/c++/src/Makefile.in hl/fortran/src/Makefile.in hl/src/Makefile.in java/src/jni/Makefile.in release_docs/RELEASE.txt src/Makefile.in
Diffstat (limited to 'src')
-rw-r--r--src/COPYING11
-rw-r--r--src/H5PL.c2
2 files changed, 6 insertions, 7 deletions
diff --git a/src/COPYING b/src/COPYING
index 6903daf..6497ace 100644
--- a/src/COPYING
+++ b/src/COPYING
@@ -5,12 +5,9 @@
The files and subdirectories in this directory are part of HDF5.
The full HDF5 copyright notice, including terms governing use,
- modification, and redistribution, is contained in the files COPYING
- and Copyright.html. COPYING can be found at the root of the source
- code distribution tree; Copyright.html can be found at the root
- level of an installed copy of the electronic HDF5 document set and
- is linked from the top-level documents page. It can also be found
- at http://www.hdfgroup.org/HDF5/doc/Copyright.html. If you do not
- have access to either file, you may request a copy from
+ modification, and redistribution, is contained in the COPYING file
+ which can be found at the root of the source code distribution tree
+ or in https://support.hdfgroup.org/ftp/HDF5/releases. If you do
+ not have access to either file, you may request a copy from
help@hdfgroup.org.
diff --git a/src/H5PL.c b/src/H5PL.c
index 512b00b..481368c 100644
--- a/src/H5PL.c
+++ b/src/H5PL.c
@@ -562,6 +562,7 @@ H5PLremove(unsigned int index)
unsigned int plindex;
FUNC_ENTER_API(FAIL)
+ H5TRACE1("e", "Iu", index);
if(H5PL_num_paths_g == 0)
HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "no directories in table")
if(index >= H5PL_MAX_PATH_NUM)
@@ -606,6 +607,7 @@ H5PLget(unsigned int index, char *pathname/*out*/, size_t size)
char *dl_path = NULL;
FUNC_ENTER_API(FAIL)
+ H5TRACE3("Zs", "Iuxz", index, pathname, size);
if(H5PL_num_paths_g == 0)
HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "no directories in table")
if(index >= H5PL_MAX_PATH_NUM)