From e8aed90f770da9eb6f4d409ed5593b3361d90000 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Fri, 3 May 1991 11:34:19 +0000 Subject: [PATCH] removed mlis.count check 5/91 --- src/rec/recState.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/rec/recState.c b/src/rec/recState.c index 73a9f67a0..dbded18a1 100644 --- a/src/rec/recState.c +++ b/src/rec/recState.c @@ -141,8 +141,7 @@ static void monitor(pstate) } if(strncmp(pstate->oval,pstate->val,sizeof(pstate->val))) { - if(pstate->mlis.count != 0) - db_post_events(pstate,&(pstate->val[0]),monitor_mask|DBE_VALUE); + db_post_events(pstate,&(pstate->val[0]),monitor_mask|DBE_VALUE); strncpy(pstate->oval,pstate->val,sizeof(pstate->val)); } return;