From da9c936ba0c88177a42414ae52c3ffcef200dcbf Mon Sep 17 00:00:00 2001 From: Rolf vandeVaart Date: Wed, 10 Nov 2010 19:09:47 +0000 Subject: [PATCH] Fix cut and paste error. Checking the wrong flags. This commit was SVN r24029. --- ompi/mca/btl/openib/btl_openib_component.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/btl/openib/btl_openib_component.c b/ompi/mca/btl/openib/btl_openib_component.c index 51fd8222d8..51147adb13 100644 --- a/ompi/mca/btl/openib/btl_openib_component.c +++ b/ompi/mca/btl/openib/btl_openib_component.c @@ -3222,7 +3222,7 @@ static void handle_wc(mca_btl_openib_device_t* device, const uint32_t cq, while((i = opal_list_remove_first(&to_send_frag(des)->coalesced_frags))) { btl_ownership = (to_base_frag(i)->base.des_flags & MCA_BTL_DES_FLAGS_BTL_OWNERSHIP); #if OMPI_OPENIB_FAILOVER_ENABLED - if (des->des_flags & MCA_BTL_DES_SEND_ALWAYS_CALLBACK) { + if (to_base_frag(i)->base.des_flags & MCA_BTL_DES_SEND_ALWAYS_CALLBACK) { #endif to_base_frag(i)->base.des_cbfunc(&openib_btl->super, endpoint, &to_base_frag(i)->base, OMPI_SUCCESS);