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;