Merge pull request #15433 from FRRouting/mergify/bp/dev/10.0/pr-15430

lib: fix setting temporary log options for libyang (backport #15430)
This commit is contained in:
Donatas Abraitis 2024-02-27 09:48:15 +02:00 committed by GitHub
commit 3497d85dcc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -157,7 +157,7 @@ void nb_nodes_delete(void)
struct nb_node *nb_node_find(const char *path)
{
const struct lysc_node *snode;
uint32_t llopts;
uint32_t llopts = 0;
/*
* Use libyang to find the schema node associated to the path and get
@ -165,8 +165,6 @@ struct nb_node *nb_node_find(const char *path)
* disable logging temporarily to avoid libyang from logging an error
* message when the node is not found.
*/
llopts = ly_log_options(LY_LOSTORE);
llopts &= ~LY_LOLOG;
ly_temp_log_options(&llopts);
snode = yang_find_snode(ly_native_ctx, path, 0);