From: Jorge Boncompte [DTI2] Date: Mon, 7 May 2012 16:53:06 +0000 (+0000) Subject: bgpd: Remove useless initialization X-Git-Tag: frr-2.0-rc1~1812 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=577ac57b78e0ee3cbc5afdb5f54a660bd0126136;p=mirror%2Ffrr.git bgpd: Remove useless initialization It's initialized below Signed-off-by: Jorge Boncompte [DTI2] Signed-off-by: David Lamparter --- diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c index c2045a8fb1..65a3ac1749 100644 --- a/bgpd/bgp_route.c +++ b/bgpd/bgp_route.c @@ -2455,7 +2455,7 @@ bgp_default_originate (struct peer *peer, afi_t afi, safi_t safi, int withdraw) { struct bgp *bgp; struct attr attr; - struct aspath *aspath = { 0 }; + struct aspath *aspath; struct prefix p; struct bgp_info binfo; struct peer *from;