Skip to content

Commit

Permalink
Fix NETCONF filtering patch
Browse files Browse the repository at this point in the history
  • Loading branch information
olofhagsand committed May 27, 2024
1 parent 1412b41 commit 148982d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/clixon_datastore_write.c
Original file line number Diff line number Diff line change
Expand Up @@ -928,9 +928,9 @@ text_modify(clixon_handle h,
if (x0vec[j] == x0c)
break;
if (j==i)
x0vec[i++] = x0c; /* != NULL if x0c is matching x1c */
x0vec[i] = x0c; /* != NULL if x0c is matching x1c */
}

i++;
}
/* Second pass: Loop through children of the x1 modification tree again
* Now potentially modify x0:s children
Expand Down

0 comments on commit 148982d

Please sign in to comment.