diff options
author | whitespace / reindent <invalid@invalid.invalid> | 2017-07-17 14:03:14 +0200 |
---|---|---|
committer | whitespace / reindent <invalid@invalid.invalid> | 2017-07-17 14:04:07 +0200 |
commit | d62a17aedeb0eebdba98238874bb13d62c48dbf9 (patch) | |
tree | 3b319b1d61c8b85b4d1f06adf8b844bb8a9b5107 /pimd/pim_routemap.c | |
parent | *: add indent control files (diff) | |
download | frr-d62a17aedeb0eebdba98238874bb13d62c48dbf9.tar.xz frr-d62a17aedeb0eebdba98238874bb13d62c48dbf9.zip |
*: reindentreindent-master-after
indent.py `git ls-files | pcregrep '\.[ch]$' | pcregrep -v '^(ldpd|babeld|nhrpd)/'`
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/pim_routemap.c')
-rw-r--r-- | pimd/pim_routemap.c | 56 |
1 files changed, 25 insertions, 31 deletions
diff --git a/pimd/pim_routemap.c b/pimd/pim_routemap.c index 20c716c3e..6d06229b9 100644 --- a/pimd/pim_routemap.c +++ b/pimd/pim_routemap.c @@ -27,55 +27,49 @@ #include "pimd.h" -static void -pim_route_map_mark_update (const char *rmap_name) +static void pim_route_map_mark_update(const char *rmap_name) { - // placeholder - return; + // placeholder + return; } -static void -pim_route_map_add (const char *rmap_name) +static void pim_route_map_add(const char *rmap_name) { - if (route_map_mark_updated(rmap_name, 0) == 0) - pim_route_map_mark_update(rmap_name); + if (route_map_mark_updated(rmap_name, 0) == 0) + pim_route_map_mark_update(rmap_name); - route_map_notify_dependencies(rmap_name, RMAP_EVENT_MATCH_ADDED); + route_map_notify_dependencies(rmap_name, RMAP_EVENT_MATCH_ADDED); } -static void -pim_route_map_delete (const char *rmap_name) +static void pim_route_map_delete(const char *rmap_name) { - if (route_map_mark_updated(rmap_name, 1) == 0) - pim_route_map_mark_update(rmap_name); + if (route_map_mark_updated(rmap_name, 1) == 0) + pim_route_map_mark_update(rmap_name); - route_map_notify_dependencies(rmap_name, RMAP_EVENT_MATCH_DELETED); + route_map_notify_dependencies(rmap_name, RMAP_EVENT_MATCH_DELETED); } -static void -pim_route_map_event (route_map_event_t event, const char *rmap_name) +static void pim_route_map_event(route_map_event_t event, const char *rmap_name) { - if (route_map_mark_updated(rmap_name, 0) == 0) - pim_route_map_mark_update(rmap_name); + if (route_map_mark_updated(rmap_name, 0) == 0) + pim_route_map_mark_update(rmap_name); - route_map_notify_dependencies(rmap_name, RMAP_EVENT_MATCH_ADDED); + route_map_notify_dependencies(rmap_name, RMAP_EVENT_MATCH_ADDED); } -void -pim_route_map_init (void) +void pim_route_map_init(void) { - route_map_init (); + route_map_init(); - route_map_add_hook (pim_route_map_add); - route_map_delete_hook (pim_route_map_delete); - route_map_event_hook (pim_route_map_event); + route_map_add_hook(pim_route_map_add); + route_map_delete_hook(pim_route_map_delete); + route_map_event_hook(pim_route_map_event); } -void -pim_route_map_terminate (void) +void pim_route_map_terminate(void) { - route_map_add_hook (NULL); - route_map_delete_hook (NULL); - route_map_event_hook (NULL); - route_map_finish(); + route_map_add_hook(NULL); + route_map_delete_hook(NULL); + route_map_event_hook(NULL); + route_map_finish(); } |