mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-12 11:18:59 +00:00
ospfd: fix clang warning
Value stored to 'nbraddr' during its initialization is never read Signed-off-by: Vincent Jardin <vincent.jardin@6wind.com>
This commit is contained in:
parent
6e38a9ece0
commit
7295876ada
@ -2322,7 +2322,7 @@ void ospf_apiserver_clients_notify_nsm_change(struct ospf_neighbor *nbr)
|
||||
{
|
||||
struct msg *msg;
|
||||
struct in_addr ifaddr = {.s_addr = 0L};
|
||||
struct in_addr nbraddr = {.s_addr = 0L};
|
||||
struct in_addr nbraddr;
|
||||
|
||||
assert(nbr);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user