1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

iec61850_sv: fix parsing of signals

This commit is contained in:
Steffen Vogel 2019-02-12 19:57:23 +01:00
parent ecfc10baef
commit bd9457c160

View file

@ -190,7 +190,7 @@ int iec61850_sv_parse(struct node *n, json_t *json)
i->out.svid = svid ? strdup(svid) : NULL;
ret = iec61850_parse_signals(json_signals, &i->out.signals, NULL);
ret = iec61850_parse_signals(json_signals, &i->out.signals, &n->out.signals);
if (ret <= 0)
error("Failed to parse setting 'signals' of node %s", node_name(n));