summaryrefslogtreecommitdiffstats
path: root/src/H5Z.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-10-18 17:33:18 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-10-18 17:33:18 (GMT)
commit873c1d3181e5b1c408c093707645cb1e7e566b72 (patch)
tree1d2a665ace4694d11508a906dfa313325e463a95 /src/H5Z.c
parentb0eb42058c02bff41cacae11880b4fbf174821db (diff)
downloadhdf5-873c1d3181e5b1c408c093707645cb1e7e566b72.zip
hdf5-873c1d3181e5b1c408c093707645cb1e7e566b72.tar.gz
hdf5-873c1d3181e5b1c408c093707645cb1e7e566b72.tar.bz2
[svn-r14209] Description:
Remove 1.6 compatibility ifdef's which were masking error from querying for info on invalid filter. Tested on: FreeBSD/32 6.2 (duty) in debug mode FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, in production mode Mac OS X/32 10.4.10 (amazon) in debug mode
Diffstat (limited to 'src/H5Z.c')
-rw-r--r--src/H5Z.c29
1 files changed, 10 insertions, 19 deletions
diff --git a/src/H5Z.c b/src/H5Z.c
index c1f9bf6..2571a1d 100644
--- a/src/H5Z.c
+++ b/src/H5Z.c
@@ -1252,42 +1252,33 @@ done:
* Programmer: James Laird and Nat Furrer
* Monday, June 7, 2004
*
- * Modifications:
- *
*-------------------------------------------------------------------------
*/
-herr_t H5Zget_filter_info(H5Z_filter_t filter, unsigned int *filter_config_flags)
+herr_t
+H5Zget_filter_info(H5Z_filter_t filter, unsigned int *filter_config_flags)
{
- herr_t ret_value=SUCCEED;
- H5Z_class_t * fclass;
+ H5Z_class_t *fclass;
+ herr_t ret_value = SUCCEED;
FUNC_ENTER_API(H5Zget_filter_info, FAIL)
- fclass = H5Z_find(filter);
-
-#ifdef H5_WANT_H5_V1_6_COMPAT
- if(fclass == NULL && filter_config_flags != NULL) {
- *filter_config_flags = 0;
- HGOTO_DONE(SUCCEED)
- } /* end if */
-#else
- if(fclass == NULL)
+ /* Look up the filter class info */
+ if(NULL == (fclass = H5Z_find(filter)))
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "Filter not defined")
-#endif /* H5_WANT_H5_V1_6_COMPAT */
- if(filter_config_flags != NULL)
- {
+ /* Set the filter config flags for the application */
+ if(filter_config_flags != NULL) {
*filter_config_flags = 0;
if(fclass->encoder_present)
*filter_config_flags |= H5Z_FILTER_CONFIG_ENCODE_ENABLED;
if(fclass->decoder_present)
*filter_config_flags |= H5Z_FILTER_CONFIG_DECODE_ENABLED;
- }
+ } /* end if */
done:
FUNC_LEAVE_API(ret_value)
-}
+} /* end H5Zget_filter_info() */
/*-------------------------------------------------------------------------