diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-02-06 08:49:02 +0200 | 
|---|---|---|
| committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-02-06 09:00:12 +0200 | 
| commit | 975a328e2eb3d1bea5fbc3c232580dd4739d59f0 (patch) | |
| tree | 587e51ff3bbf8dc368ecd1c414615d19ff5139ae /eigrpd/eigrp_northbound.c | |
| parent | 85c58de7732d72d063efc930708fca7302ccf8a1 (diff) | |
*: Replace s_addr 0 => INADDR_ANY
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
Diffstat (limited to 'eigrpd/eigrp_northbound.c')
| -rw-r--r-- | eigrpd/eigrp_northbound.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/eigrpd/eigrp_northbound.c b/eigrpd/eigrp_northbound.c index 4ccce2ebb8..e03ebb4fcb 100644 --- a/eigrpd/eigrp_northbound.c +++ b/eigrpd/eigrp_northbound.c @@ -161,7 +161,7 @@ static int eigrpd_instance_router_id_destroy(enum nb_event event,  		break;  	case NB_EV_APPLY:  		eigrp = nb_running_get_entry(dnode, NULL, true); -		eigrp->router_id_static.s_addr = 0; +		eigrp->router_id_static.s_addr = INADDR_ANY;  		break;  	}  | 
