[trivia] finish off static'ification of ospf6d and ripngd
2008-08-15 Paul Jakma <paul.jakma@sun.com>
* {ospf6d,ripngd}/*: Finish job of marking functions as static, or
exporting declarations for them, to quell warning noise with
Quagga's GCC default high-level of warning flags. Thus allowing
remaining, more useful warnings to be more easily seen.
diff --git a/ospf6d/ospf6_intra.c b/ospf6d/ospf6_intra.c
index ffd9c72..103e8fc 100644
--- a/ospf6d/ospf6_intra.c
+++ b/ospf6d/ospf6_intra.c
@@ -56,7 +56,7 @@
/* RFC2740 3.4.3.1 Router-LSA */
/******************************/
-int
+static int
ospf6_router_lsa_show (struct vty *vty, struct ospf6_lsa *lsa)
{
char *start, *end, *current;
@@ -316,7 +316,7 @@
/* RFC2740 3.4.3.2 Network-LSA */
/*******************************/
-int
+static int
ospf6_network_lsa_show (struct vty *vty, struct ospf6_lsa *lsa)
{
char *start, *end, *current;
@@ -462,7 +462,7 @@
/* RFC2740 3.4.3.6 Link-LSA */
/****************************/
-int
+static int
ospf6_link_lsa_show (struct vty *vty, struct ospf6_lsa *lsa)
{
char *start, *end, *current;
@@ -615,7 +615,7 @@
/* RFC2740 3.4.3.7 Intra-Area-Prefix-LSA */
/*****************************************/
-int
+static int
ospf6_intra_prefix_lsa_show (struct vty *vty, struct ospf6_lsa *lsa)
{
char *start, *end, *current;
@@ -1238,7 +1238,7 @@
zlog_debug ("Re-examin intra-routes for area %s: Done", oa->name);
}
-void
+static void
ospf6_brouter_debug_print (struct ospf6_route *brouter)
{
u_int32_t brouter_id;