[BGP/cleanup] make some damp function static
diff --git a/bgpd/bgp_damp.c b/bgpd/bgp_damp.c
index ba25f4d..346ba52 100644
--- a/bgpd/bgp_damp.c
+++ b/bgpd/bgp_damp.c
@@ -36,7 +36,7 @@
 
 /* Global variable to access damping configuration */
 struct bgp_damp_config bgp_damp_cfg;
-struct bgp_damp_config *damp = &bgp_damp_cfg;
+static struct bgp_damp_config *damp = &bgp_damp_cfg;
 
 /* Utility macro to add and delete BGP dampening information to no
    used list.  */
@@ -543,7 +543,7 @@
 
 #define BGP_UPTIME_LEN 25
 
-char *
+static const char *
 bgp_get_reuse_time (unsigned int penalty, char *buf, size_t len)
 {
   time_t reuse_time = 0;
@@ -615,7 +615,7 @@
   vty_out (vty, "%s", VTY_NEWLINE);
 }
 
-char *
+const char *
 bgp_damp_reuse_time_vty (struct vty *vty, struct bgp_info *binfo)
 {
   struct bgp_damp_info *bdi;