[BGP/cleanup] make message list in bgp_open const
diff --git a/bgpd/bgp_open.c b/bgpd/bgp_open.c
index 540edad..3759581 100644
--- a/bgpd/bgp_open.c
+++ b/bgpd/bgp_open.c
@@ -194,20 +194,22 @@
 	       peer->host, afi, safi, type, mode);
 }
 
-static struct message orf_type_str[] =
+static const struct message orf_type_str[] =
 {
   { ORF_TYPE_PREFIX,		"Prefixlist"		},
   { ORF_TYPE_PREFIX_OLD,	"Prefixlist (old)"	},
 };
-static int orf_type_str_max = sizeof(orf_type_str)/sizeof(orf_type_str[0]);
+static const int orf_type_str_max
+	= sizeof(orf_type_str)/sizeof(orf_type_str[0]);
 
-static struct message orf_mode_str[] =
+static const struct message orf_mode_str[] =
 {
   { ORF_MODE_RECEIVE,	"Receive"	},
   { ORF_MODE_SEND,	"Send"		},
   { ORF_MODE_BOTH,	"Both"		},
 };
-static int orf_mode_str_max = sizeof(orf_mode_str)/sizeof(orf_mode_str[0]);
+static const int orf_mode_str_max
+	 = sizeof(orf_mode_str)/sizeof(orf_mode_str[0]);
 
 static int
 bgp_capability_orf_entry (struct peer *peer, struct capability_header *hdr)