commit | 193dacdfac53bb635b794a5e4a68e74c614ff497 | [log] [tgz] |
---|---|---|
author | Michal Vasko <mvasko@cesnet.cz> | Thu Oct 13 08:43:05 2022 +0200 |
committer | Michal Vasko <mvasko@cesnet.cz> | Tue Nov 08 08:25:25 2022 +0100 |
tree | 1582cc8cfac793861cf3f4651e8136ef7f51007c | |
parent | 9c3556a6097ca9f2c2a3dec1af2979c05535b701 [diff] [blame] |
plugins exts CHANGE ext parsing isolated into a callback Lots of refactoring and finishing up included.
diff --git a/src/parser_json.c b/src/parser_json.c index 3badd6c..2565c12 100644 --- a/src/parser_json.c +++ b/src/parser_json.c
@@ -926,7 +926,7 @@ if (*node_p) { /* insert, keep first pointer correct */ if (ext) { - lyd_insert_ext(parent, *node_p); + lyplg_ext_insert(parent, *node_p); } else { lyd_insert_node(parent, first_p, *node_p, last); }