diff options
author | paul <paul> | 2005-06-28 17:17:12 +0000 |
---|---|---|
committer | paul <paul> | 2005-06-28 17:17:12 +0000 |
commit | a1ac18c4d5b4f8f4f279efb2ae12b46258f22282 (patch) | |
tree | e37732ef4b00ae98d1be693e721b01cc2566ba39 /zebra/router-id.c | |
parent | 94f2b3923e9663d0355a829f22e4e31cf68ee7b8 (diff) | |
download | quagga-a1ac18c4d5b4f8f4f279efb2ae12b46258f22282.tar.bz2 quagga-a1ac18c4d5b4f8f4f279efb2ae12b46258f22282.tar.xz |
2005-06-28 Paul Jakma <paul.jakma@sun.com>
* (global) Extern and static'ification, with related fixups
of declarations, ensuring files include their own headers, etc.
if_ioctl.c: (interface_info_ioctl) fix obvious arg mis-order in
list loop
Diffstat (limited to 'zebra/router-id.c')
-rw-r--r-- | zebra/router-id.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/zebra/router-id.c b/zebra/router-id.c index 6194582e..c73b65b5 100644 --- a/zebra/router-id.c +++ b/zebra/router-id.c @@ -38,6 +38,7 @@ #include "rib.h" #include "zebra/zserv.h" +#include "zebra/router-id.h" static struct list rid_all_sorted_list; static struct list rid_lo_sorted_list; @@ -228,7 +229,7 @@ DEFUN (no_router_id, return CMD_SUCCESS; } -int +static int router_id_cmp (void *a, void *b) { unsigned int A, B; |