Index: NVDataMgmt.c =================================================================== diff -u -r76bfb702eeef1295e4767eed7cd13420fe6ab803 -r3b70d6b53c78039aa9b7b2546a0137e906966519 --- NVDataMgmt.c (.../NVDataMgmt.c) (revision 76bfb702eeef1295e4767eed7cd13420fe6ab803) +++ NVDataMgmt.c (.../NVDataMgmt.c) (revision 3b70d6b53c78039aa9b7b2546a0137e906966519) @@ -8,7 +8,7 @@ * @file NVDataMgmt.c * * @author (last) Dara Navaei -* @date (last) 11-Apr-2024 +* @date (last) 09-May-2024 * * @author (original) Dara Navaei * @date (original) 12-Feb-2020 @@ -130,7 +130,7 @@ #ifdef _HD_ #define DEFAULT_BLOOD_LEAK_SET_POINT 20 ///< Blood leak default set point. #define DEFAULT_HEPARIN_PUMP_VOLTAGE 0.15F ///< Heparin pump default voltage. -#define DEFAULT_ENABLE_CHEM_DISINFECT 1 ///< Enable chemical disinfect in institutional record. +#define DEFAULT_ENABLE_CHEM_DISINFECT 0 ///< Disable chemical disinfect in institutional record. #endif // DG specific defines @@ -1540,7 +1540,7 @@ *************************************************************************/ BOOL isChemDisinfectEnabledInInstitRecord( void ) { - BOOL status = ( DEFAULT_ENABLE_CHEM_DISINFECT == hdInstitutionalGroup.hdInstitutionalRecord.enableChemicalDisinfect ? TRUE : FALSE ); + BOOL status = ( DEFAULT_ENABLE_CHEM_DISINFECT == hdInstitutionalGroup.hdInstitutionalRecord.enableChemicalDisinfect ? FALSE : TRUE ); return status; }