diff options
author | paul <paul> | 2006-01-19 20:16:55 +0000 |
---|---|---|
committer | paul <paul> | 2006-01-19 20:16:55 +0000 |
commit | e8e1946edf6ba87ef53832cdceccc39d7f0c3f26 (patch) | |
tree | fcdaf92bf4129a8a58825bd21ae841a6b3b2bda8 /bgpd/bgp_attr.c | |
parent | 779adb0147cfff1a831b08853976342ad2110fcd (diff) |
[compiler] miscellaneous trivial compiler warning fixes
2006-01-19 Paul Jakma <paul.jakma@sun.com>
* (general) various miscellaneous compiler warning fixes.
Remove redundant break statements from switch clauses
which return.
return from main, not exit, cause it annoys SOS.
Remove stray semi-colons which cause empty-statement
warnings.
* zebra/main.c: (sighup) remove private declaration of external
function.
Diffstat (limited to 'bgpd/bgp_attr.c')
-rw-r--r-- | bgpd/bgp_attr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bgpd/bgp_attr.c b/bgpd/bgp_attr.c index 4b94b11e..3b27517d 100644 --- a/bgpd/bgp_attr.c +++ b/bgpd/bgp_attr.c @@ -983,7 +983,6 @@ bgp_mp_reach_parse (struct peer *peer, bgp_size_t length, struct attr *attr, zlog_info ("Wrong multiprotocol next hop length: %d", attr->mp_nexthop_len); return -1; - break; } snpa_num = stream_getc (s); |