diff options
author | hasso <hasso> | 2004-09-26 16:24:14 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-09-26 16:24:14 +0000 |
commit | f7c43dcbbc44e2098728f9849d152d9b6df97a5d (patch) | |
tree | b0a244f23dc7f1d9414d7a92316f7f83e3103c5b /isisd/isis_events.c | |
parent | 1af8193311192ec1bd2a4d2769e0e9b90bc1609f (diff) | |
download | quagga-f7c43dcbbc44e2098728f9849d152d9b6df97a5d.tar.bz2 quagga-f7c43dcbbc44e2098728f9849d152d9b6df97a5d.tar.xz |
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 4f843887..353c29ba 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)); |