From c550cc01be0024ec20dc66194fbb1c0664a86d12 Mon Sep 17 00:00:00 2001 From: zimoch Date: Tue, 13 Sep 2011 15:52:24 +0000 Subject: [PATCH] bugfix: this could hang up the record in PACT=1 state --- src/StreamEpics.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/StreamEpics.cc b/src/StreamEpics.cc index 4b1b4cc..deb5a61 100644 --- a/src/StreamEpics.cc +++ b/src/StreamEpics.cc @@ -690,6 +690,7 @@ process() debug("Stream::process(%s): could not start, status=%d\n", name(), status); (void) recGblSetSevr(record, status, INVALID_ALARM); + record->pact = false; return false; } debug("Stream::process(%s): protocol started\n", name());