From 5c7b26d7314caa5d69390598c1048fb60336166a Mon Sep 17 00:00:00 2001 From: Ezekiel Dohmen <ezekiel.dohmen@ligo.org> Date: Mon, 4 Apr 2022 15:00:44 -0700 Subject: [PATCH] Typo fix --- src/fe/dolphin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe/dolphin.c b/src/fe/dolphin.c index 101ada5e8..3e11c7f87 100644 --- a/src/fe/dolphin.c +++ b/src/fe/dolphin.c @@ -41,7 +41,7 @@ session_callback( session_cb_arg_t IN arg, /// @brief This function contains the required Dolphin callback routine. \n // printl("Session callback reason=%d status=%d target_node=%d\n", reason, // status, target_node); if (reason == SR_OK) iop_rfm_valid = 1; - if ( reason == SR_OK || status == SR_NONE ) //TODO: This does not seem like a good check, we could pass if reason has an error and status is SR_NONE + if ( reason == SR_OK || status == SS_NONE ) //TODO: This does not seem like a good check, we could pass if reason has an error and status is SR_NONE iop_rfm_valid = 1; else iop_rfm_valid = 0; -- GitLab