From ce78b7659888c6cefdce96c10483a5c9672d78df Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Fri, 28 Oct 2005 14:03:26 +0000 Subject: [PATCH] Quick fix from Ralph -- this escape committing last night. This commit was SVN r7917. --- orte/mca/gpr/base/unpack_api_response/gpr_base_unpack_put_get.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orte/mca/gpr/base/unpack_api_response/gpr_base_unpack_put_get.c b/orte/mca/gpr/base/unpack_api_response/gpr_base_unpack_put_get.c index 92f67cd3c6..d77cdcf85f 100644 --- a/orte/mca/gpr/base/unpack_api_response/gpr_base_unpack_put_get.c +++ b/orte/mca/gpr/base/unpack_api_response/gpr_base_unpack_put_get.c @@ -78,7 +78,7 @@ int orte_gpr_base_unpack_get(orte_buffer_t *buffer, int *ret, size_t *cnt, orte_ return rc; } - if (ORTE_GPR_GET_CMD != command || ORTE_GPR_GET_CONDITIONAL_CMD != command) { + if (ORTE_GPR_GET_CMD != command && ORTE_GPR_GET_CONDITIONAL_CMD != command) { ORTE_ERROR_LOG(ORTE_ERR_COMM_FAILURE); return ORTE_ERR_COMM_FAILURE; }