diff options
author | hasso <hasso> | 2004-09-26 18:24:14 +0200 |
---|---|---|
committer | hasso <hasso> | 2004-09-26 18:24:14 +0200 |
commit | f7c43dcbbc44e2098728f9849d152d9b6df97a5d (patch) | |
tree | b0a244f23dc7f1d9414d7a92316f7f83e3103c5b /isisd/isis_events.c | |
parent | Fix compiler warning. (diff) | |
download | frr-f7c43dcbbc44e2098728f9849d152d9b6df97a5d.tar.xz frr-f7c43dcbbc44e2098728f9849d152d9b6df97a5d.zip |
Compiler warnings fixes.
Diffstat (limited to 'isisd/isis_events.c')
-rw-r--r-- | isisd/isis_events.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/isisd/isis_events.c b/isisd/isis_events.c index 4f8438873..353c29ba1 100644 --- a/isisd/isis_events.c +++ b/isisd/isis_events.c @@ -295,20 +295,6 @@ isis_event_adjacency_state_change (struct isis_adjacency *adj, int newstate) return; } -void -isis_event_int_reach_change (struct isis_circuit *circuit) -{ - if (!circuit || !circuit->area) - return; - - zlog_info ("ISIS-Evt (%s) Internal reachability change", - circuit->area->area_tag); - - lsp_regenerate_schedule (circuit->area); - - return; -} - /* events supporting code */ int @@ -331,7 +317,7 @@ isis_event_dis_status_change (struct thread *thread) } void -isis_event_auth_failure (char *area_tag, char *error_string, char *sysid) +isis_event_auth_failure (char *area_tag, char *error_string, u_char *sysid) { zlog_info ("ISIS-Evt (%s) Authentication failure %s from %s", area_tag, error_string, sysid_print (sysid)); |