summaryrefslogtreecommitdiffstats
path: root/src/H5FDcore.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-11-28 16:38:39 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-11-28 16:38:39 (GMT)
commitc4162e5ce5d79d468a7e628b6dd4be0792e5a470 (patch)
treee62edcd4fe0c1ec670de9b66ac10e8027be30a77 /src/H5FDcore.c
parentf8d5c76ee70b6f644eaa67c4449065b4f5b68e47 (diff)
downloadhdf5-c4162e5ce5d79d468a7e628b6dd4be0792e5a470.zip
hdf5-c4162e5ce5d79d468a7e628b6dd4be0792e5a470.tar.gz
hdf5-c4162e5ce5d79d468a7e628b6dd4be0792e5a470.tar.bz2
[svn-r3010] Purpose:
Bug fix Description: When the v1.2 compatibility code was turned on, internal functions in the library were getting confused. Solution: Separated guts of H5Pget_driver call into an API function (the definition of which depends on the compatibility switch) and an internal function which always behaves like the v1.3/4 function. Replaced API function calls in the library code with the internal function. Platforms tested: FreeBSD 4.2 (hawkwind)
Diffstat (limited to 'src/H5FDcore.c')
-rw-r--r--src/H5FDcore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDcore.c b/src/H5FDcore.c
index 60717ad..7b278ab 100644
--- a/src/H5FDcore.c
+++ b/src/H5FDcore.c
@@ -218,7 +218,7 @@ H5Pget_fapl_core(hid_t fapl_id, size_t *increment/*out*/,
if (H5P_FILE_ACCESS!=H5Pget_class(fapl_id))
HRETURN_ERROR(H5E_PLIST, H5E_BADTYPE, FAIL, "not a fapl");
- if (H5FD_CORE!=H5Pget_driver(fapl_id))
+ if (H5FD_CORE!=H5P_get_driver(fapl_id))
HRETURN_ERROR(H5E_PLIST, H5E_BADVALUE, FAIL, "incorrect VFL driver");
if (NULL==(fa=H5Pget_driver_info(fapl_id)))
HRETURN_ERROR(H5E_PLIST, H5E_BADVALUE, FAIL, "bad VFL driver info");