changed if(precord->sevr>=MAJOR_ALARM) all_done; to

if(precord->sevr>=MAJOR_ALARM) goto all_done;
This commit is contained in:
Janet B. Anderson
1993-07-27 07:37:17 +00:00
parent b5758d2798
commit 374ecb9ec5

View File

@@ -226,7 +226,7 @@ long dbProcess(struct dbCommon *precord)
/* raise scan alarm after MAX_LOCK times */
if(precord->stat==SCAN_ALARM) goto all_done;
if(precord->lcnt++ !=MAX_LOCK) goto all_done;
if(precord->sevr>=MAJOR_ALARM) all_done;
if(precord->sevr>=MAJOR_ALARM) goto all_done;
precord->sevr = MAJOR_ALARM;
precord->stat = SCAN_ALARM;
precord->nsev = 0;