diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2007-10-22 14:55:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-22 22:15:59 -0400 |
commit | 5081dba6588a0c228821ede4635441f7758eb757 (patch) | |
tree | e01ae7a431a41bce25fc0805dc778d955fc02a02 /kernel/sysctl_check.c | |
parent | 974717012029ee36d19069c12e3c9bb13fa715a8 (diff) |
Fix appletalk sysctl entry name
Gabriel C reported that modprobing appletalk on current git gives a
warning in dmesg :
"sysctl table check failed: /net/appletalk .3.7 procname does not match binary path procname"
Oops. My apologies it appears I made a mistake when creating my table
to check up on sysctl values.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Tested-by: Gabriel C <nix.or.die@googlemail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/sysctl_check.c')
-rw-r--r-- | kernel/sysctl_check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sysctl_check.c b/kernel/sysctl_check.c index 3c9ef5a7d575..ed6fe51df77a 100644 --- a/kernel/sysctl_check.c +++ b/kernel/sysctl_check.c | |||
@@ -731,7 +731,7 @@ static struct trans_ctl_table trans_net_table[] = { | |||
731 | { NET_UNIX, "unix", trans_net_unix_table }, | 731 | { NET_UNIX, "unix", trans_net_unix_table }, |
732 | { NET_IPV4, "ipv4", trans_net_ipv4_table }, | 732 | { NET_IPV4, "ipv4", trans_net_ipv4_table }, |
733 | { NET_IPX, "ipx", trans_net_ipx_table }, | 733 | { NET_IPX, "ipx", trans_net_ipx_table }, |
734 | { NET_ATALK, "atalk", trans_net_atalk_table }, | 734 | { NET_ATALK, "appletalk", trans_net_atalk_table }, |
735 | { NET_NETROM, "netrom", trans_net_netrom_table }, | 735 | { NET_NETROM, "netrom", trans_net_netrom_table }, |
736 | { NET_AX25, "ax25", trans_net_ax25_table }, | 736 | { NET_AX25, "ax25", trans_net_ax25_table }, |
737 | { NET_BRIDGE, "bridge", trans_net_bridge_table }, | 737 | { NET_BRIDGE, "bridge", trans_net_bridge_table }, |