diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2016-07-28 17:23:46 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetwroks.com> | 2016-07-28 13:27:47 +0200 |
commit | a8fd82028158f8e811e214fec0185cf6cdfdb9cb (patch) | |
tree | 75a3b1ace1cf15db15f286492f22b752ce4a40a4 /isisd/isis_spf.c | |
parent | *: snmp: add a load of "static" specifiers (diff) | |
download | frr-a8fd82028158f8e811e214fec0185cf6cdfdb9cb.tar.xz frr-a8fd82028158f8e811e214fec0185cf6cdfdb9cb.zip |
lib: linklist: clean up insert-before/after dups
- list_add_node_next was in fact unused
- list_add_node_prev performs a subset of listnode_add_before and
its only use in isisd replaced with that.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'isisd/isis_spf.c')
-rw-r--r-- | isisd/isis_spf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/isisd/isis_spf.c b/isisd/isis_spf.c index 32026f9b1..fd5af4a2b 100644 --- a/isisd/isis_spf.c +++ b/isisd/isis_spf.c @@ -545,13 +545,13 @@ isis_spf_add2tent (struct isis_spftree *spftree, enum vertextype vtype, v = listgetdata (node); if (v->d_N > vertex->d_N) { - list_add_node_prev (spftree->tents, node, vertex); + listnode_add_before (spftree->tents, node, vertex); break; } else if (v->d_N == vertex->d_N && v->type > vertex->type) { /* Tie break, add according to type */ - list_add_node_prev (spftree->tents, node, vertex); + listnode_add_before (spftree->tents, node, vertex); break; } } |