diff options
| author | Alexey Dobriyan <adobriyan@gmail.com> | 2010-01-22 10:17:26 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-01-23 01:21:27 -0800 | 
| commit | 5833929cc2ad2b3064b4fac8c44e293972d240d8 (patch) | |
| tree | f40c1e8c54f7b42fb1edf7dadc624ad60deac307 /net/ipv4/proc.c | |
| parent | 81c1ebfc4379f529b001e23164dd5c2282bdc0ec (diff) | |
| download | olio-linux-3.10-5833929cc2ad2b3064b4fac8c44e293972d240d8.tar.xz olio-linux-3.10-5833929cc2ad2b3064b4fac8c44e293972d240d8.zip  | |
net: constify MIB name tables
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/proc.c')
| -rw-r--r-- | net/ipv4/proc.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/proc.c b/net/ipv4/proc.c index f25542c48b7..1b09a6dde7c 100644 --- a/net/ipv4/proc.c +++ b/net/ipv4/proc.c @@ -127,8 +127,8 @@ static const struct snmp_mib snmp4_ipextstats_list[] = {  	SNMP_MIB_SENTINEL  }; -static struct { -	char *name; +static const struct { +	const char *name;  	int index;  } icmpmibmap[] = {  	{ "DestUnreachs", ICMP_DEST_UNREACH },  |