From fb7ba7c52b4e0d24fbb52ad9d6f91cbaac5ce53f Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 27 Jul 2022 15:56:32 +0200 Subject: [PATCH] iec60870: fix vectorize --- lib/nodes/iec60870.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/nodes/iec60870.cpp b/lib/nodes/iec60870.cpp index 86cd676d3..81954968c 100644 --- a/lib/nodes/iec60870.cpp +++ b/lib/nodes/iec60870.cpp @@ -779,15 +779,17 @@ int SlaveNode::parse(json_t *json, const uuid_t sn_uuid) int SlaveNode::start() { startSlave(); + return Node::start(); } int SlaveNode::stop() { stopSlave(); + return Node::stop(); } static char name[] = "iec60870-5-104"; static char description[] = "Provide values as protocol slave"; -static NodePlugin p; +static NodePlugin p;