diff options
author | paul <paul> | 2005-06-28 17:17:12 +0000 |
---|---|---|
committer | paul <paul> | 2005-06-28 17:17:12 +0000 |
commit | 308650755ded752cf1303ef177979e2bd9885aa6 (patch) | |
tree | f2a30dfa52f1e91da25f9911dbe9734fe923201d /zebra/debug.c | |
parent | 4951cb4ced7d569a7268f6e8c61c3ddfed8760a1 (diff) | |
download | quagga-308650755ded752cf1303ef177979e2bd9885aa6.tar.bz2 quagga-308650755ded752cf1303ef177979e2bd9885aa6.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/debug.c')
-rw-r--r-- | zebra/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/debug.c b/zebra/debug.c index fc99623a..8575a664 100644 --- a/zebra/debug.c +++ b/zebra/debug.c @@ -201,7 +201,7 @@ struct cmd_node debug_node = 1 }; -int +static int config_write_debug (struct vty *vty) { int write = 0; @@ -242,7 +242,7 @@ config_write_debug (struct vty *vty) } void -zebra_debug_init () +zebra_debug_init (void) { zebra_debug_event = 0; zebra_debug_packet = 0; |