diff options
author | Igor Ryzhov <iryzhov@nfware.com> | 2023-10-06 20:18:33 +0200 |
---|---|---|
committer | Igor Ryzhov <iryzhov@nfware.com> | 2023-10-06 20:18:33 +0200 |
commit | a962f2949f3c60fdc15a9d9d45fb81eb3cf18828 (patch) | |
tree | f8dd843baadba7876e79b98d14fd50a9ef37f64f /lib/northbound.h | |
parent | Merge pull request #14534 from mjstapp/fix_topo_nhgid (diff) | |
download | frr-a962f2949f3c60fdc15a9d9d45fb81eb3cf18828.tar.xz frr-a962f2949f3c60fdc15a9d9d45fb81eb3cf18828.zip |
mgmt: delete candidate scratch buffer
The code doesn't work at all. It tries to use libyang operation
metadata in a regular (not diff) data tree, and regular data trees
don't provide this data. Also, for destroy operations, it searches
for nodes in the running config, which may not have the deleted nodes
if we're not using implicit commits.
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'lib/northbound.h')
-rw-r--r-- | lib/northbound.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/northbound.h b/lib/northbound.h index 1723a87e4..5cf6e85b4 100644 --- a/lib/northbound.h +++ b/lib/northbound.h @@ -703,7 +703,6 @@ struct nb_transaction { struct nb_config { struct lyd_node *dnode; uint32_t version; - struct nb_config_cbs cfg_chgs; }; /* Callback function used by nb_oper_data_iterate(). */ |