diff options
author | Denis Ovsienko <infrastation@yandex.ru> | 2012-01-08 16:52:36 +0400 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2012-03-25 17:06:52 +0100 |
commit | 3dbda0ceebe369a1071600fe7d8d8ecf45f1027c (patch) | |
tree | 1df830052d1a516bc4ec6b213b36b16d28c9868d /babeld/babeld.c | |
parent | ef4de4d36c2dc10a68d41e518057d04b262ec867 (diff) |
babeld: address some compilation warnings
Including system headers is not necessary with zebra.h included and
sometimes results in "__ASSERT_FUNCTION redefined" compilation warning.
* babeld.c
* babel_distribute_update_interface(): make static
* babel_interface.c
* interface_config_write(): unused 'babel_ifp'
* don't include system headers
* message.c
* send_request(): unused 'babel_ifp'
* send_multihop_request(): idem
* don't include system headers
* route.c: don't include system headers
* xroute.c: idem
* source.h: newline at EOF
* message.h: idem
Diffstat (limited to 'babeld/babeld.c')
-rw-r--r-- | babeld/babeld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/babeld/babeld.c b/babeld/babeld.c index 18b4e34f..3dc35b5d 100644 --- a/babeld/babeld.c +++ b/babeld/babeld.c @@ -560,7 +560,7 @@ babel_distribute_update (struct distribute *dist) } } -void +static void babel_distribute_update_interface (struct interface *ifp) { struct distribute *dist; |