diff options
author | Pavel Tvrdik <pawel.tvrdik@gmail.cz> | 2014-12-03 10:10:34 +0100 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2015-02-21 19:31:36 +0100 |
commit | 4a591d4b947e0abc0ad013ca1b75da27c6922be5 (patch) | |
tree | 01327290a9810cc068429f81099dbc684bd8306f /proto/bgp/bgp.c | |
parent | 8ce9a87755372d7612375bb1a81a288f309746c8 (diff) |
Replacing GNU old-style field designator extension
Diffstat (limited to 'proto/bgp/bgp.c')
-rw-r--r-- | proto/bgp/bgp.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/proto/bgp/bgp.c b/proto/bgp/bgp.c index 3feffbd9..b852da04 100644 --- a/proto/bgp/bgp.c +++ b/proto/bgp/bgp.c @@ -1431,18 +1431,18 @@ bgp_show_proto_info(struct proto *P) } struct protocol proto_bgp = { - name: "BGP", - template: "bgp%d", - attr_class: EAP_BGP, - preference: DEF_PREF_BGP, - init: bgp_init, - start: bgp_start, - shutdown: bgp_shutdown, - cleanup: bgp_cleanup, - reconfigure: bgp_reconfigure, - copy_config: bgp_copy_config, - get_status: bgp_get_status, - get_attr: bgp_get_attr, - get_route_info: bgp_get_route_info, - show_proto_info: bgp_show_proto_info + .name = "BGP", + .template = "bgp%d", + .attr_class = EAP_BGP, + .preference = DEF_PREF_BGP, + .init = bgp_init, + .start = bgp_start, + .shutdown = bgp_shutdown, + .cleanup = bgp_cleanup, + .reconfigure = bgp_reconfigure, + .copy_config = bgp_copy_config, + .get_status = bgp_get_status, + .get_attr = bgp_get_attr, + .get_route_info = bgp_get_route_info, + .show_proto_info = bgp_show_proto_info }; |