diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2018-10-02 11:39:51 +0200 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2018-10-02 11:40:52 +0200 | 
| commit | 6a154c88122dd0a9e9deb4309e15b975ad169817 (patch) | |
| tree | 25e32515503d2b9327ff43e335b4b5ceb4d74787 /ospf6d/ospf6_spf.c | |
| parent | b08bb12b9b5bab9684b6679f997f11c755f9aa67 (diff) | |
*: list_delete_and_null() -> list_delete()
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'ospf6d/ospf6_spf.c')
| -rw-r--r-- | ospf6d/ospf6_spf.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/ospf6d/ospf6_spf.c b/ospf6d/ospf6_spf.c index d9ddc1bb83..2d271c1dab 100644 --- a/ospf6d/ospf6_spf.c +++ b/ospf6d/ospf6_spf.c @@ -158,8 +158,8 @@ static struct ospf6_vertex *ospf6_vertex_create(struct ospf6_lsa *lsa)  static void ospf6_vertex_delete(struct ospf6_vertex *v)  { -	list_delete_and_null(&v->nh_list); -	list_delete_and_null(&v->child_list); +	list_delete(&v->nh_list); +	list_delete(&v->child_list);  	XFREE(MTYPE_OSPF6_VERTEX, v);  }  | 
