diff options
| author | Stephen Hemminger <stephen@networkplumber.org> | 2014-11-03 01:20:09 +0000 |
|---|---|---|
| committer | Daniel Walton <dwalton@cumulusnetworks.com> | 2016-05-26 01:16:33 +0000 |
| commit | bdcf8f59a49d01202c9740f4be9c5e51420a61a8 (patch) | |
| tree | f5c2d35c9165e9981f6c6236d79dd9b4c04b5aac | |
| parent | 0b1e756bbfc06fadbd447cd7b1956ee7782e625b (diff) | |
make some structures constant.
These pre-initialized arrays are not modified.
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Feng Lu <lu.feng@6wind.com>
(cherry picked from commit 88d37b902bc8127379d3293b9671aa6a11479c23)
| -rw-r--r-- | isisd/isis_pdu.c | 2 | ||||
| -rw-r--r-- | ripd/rip_interface.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/isisd/isis_pdu.c b/isisd/isis_pdu.c index d1caaa49ab..dad39bcda3 100644 --- a/isisd/isis_pdu.c +++ b/isisd/isis_pdu.c @@ -62,7 +62,7 @@ #endif /* PNBBY */ /* Utility mask array. */ -static u_char maskbit[] = { +static const u_char maskbit[] = { 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xff }; diff --git a/ripd/rip_interface.c b/ripd/rip_interface.c index c9cccbbe1f..23d90a616d 100644 --- a/ripd/rip_interface.c +++ b/ripd/rip_interface.c @@ -50,7 +50,7 @@ static int rip_enable_if_lookup (const char *ifname); static int rip_enable_network_lookup2 (struct connected *connected); static void rip_enable_apply_all (void); -struct message ri_version_msg[] = +const struct message ri_version_msg[] = { {RI_RIP_VERSION_1, "1"}, {RI_RIP_VERSION_2, "2"}, |
