1
1

fix the delete selection logic in io/base. With the previous version, there was a mismatch

in the version number and no component was selected for file_delete.
Этот коммит содержится в:
Edgar Gabriel 2015-07-20 10:01:30 -05:00
родитель 9140ad4642
Коммит 86c3000e18

Просмотреть файл

@ -286,9 +286,9 @@ static avail_io_t *query(const mca_base_component_t *component,
/* io v2.0.0 */ /* io v2.0.0 */
if (2 == component->mca_major_version && if (MCA_BASE_VERSION_MAJOR == component->mca_major_version &&
0 == component->mca_minor_version && MCA_BASE_VERSION_MINOR == component->mca_minor_version &&
0 == component->mca_release_version) { MCA_BASE_VERSION_RELEASE == component->mca_release_version) {
ioc_200 = (mca_io_base_component_2_0_0_t *) component; ioc_200 = (mca_io_base_component_2_0_0_t *) component;
return query_2_0_0(ioc_200, filename, info); return query_2_0_0(ioc_200, filename, info);