diff options
| author | Daniil Baturin <daniil@vyos.io> | 2026-02-12 14:16:57 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-12 14:16:57 +0000 |
| commit | 6ebd5d80f9a212beba6352494392ae811f66d64e (patch) | |
| tree | bb70c867d45318ab5d15bbde87b0079d716c277f /src/config_diff.ml | |
| parent | 6cf3918875b11dd94f9dc380b4083cc4258da74c (diff) | |
| parent | 5d201299b11e736e3a2c682e62d17cb9f2ef120a (diff) | |
| download | vyos1x-config-6ebd5d80f9a212beba6352494392ae811f66d64e.tar.gz vyos1x-config-6ebd5d80f9a212beba6352494392ae811f66d64e.zip | |
Merge pull request #65 from jestabro/config-dict
T8232: Simplify and extend config_dict construction
Diffstat (limited to 'src/config_diff.ml')
| -rw-r--r-- | src/config_diff.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config_diff.ml b/src/config_diff.ml index 54f6474..5d71c34 100644 --- a/src/config_diff.ml +++ b/src/config_diff.ml @@ -330,7 +330,7 @@ let get_tagged_delete_tree dt = else (p, a) in - snd (Vytree.fold_tree_with_path f ([], del_tree) del_tree) + Vytree.fold_tree_with_path f ([], del_tree) del_tree (* the following builds a diff_func to return a unified diff string of |
