commit | 4e205e81e4c703290b79220f69965bea85e4fae9 | [log] [tgz] |
---|---|---|
author | Michal Vasko <mvasko@cesnet.cz> | Tue Jun 08 14:01:47 2021 +0200 |
committer | Michal Vasko <mvasko@cesnet.cz> | Wed Jun 16 11:37:31 2021 +0200 |
tree | 7be3fd249f7fd66e293cb7421ff8e18d18fe4a7a | |
parent | 11001a747a9be68bea4a05b5a8d17872314a9446 [diff] [blame] |
schema tree REFACTOR always parse and implement separately
diff --git a/src/path.c b/src/path.c index 4109f73..9500422 100644 --- a/src/path.c +++ b/src/path.c
@@ -431,7 +431,7 @@ } assert(unres); - LY_CHECK_GOTO(ret = lys_set_implemented_r((struct lys_module *)*mod, NULL, unres), error); + LY_CHECK_GOTO(ret = lys_implement((struct lys_module *)*mod, NULL, unres), error); if (unres->recompile) { return LY_ERECOMPILE; }