diff options
author | Dave Jones <davej@redhat.com> | 2005-04-28 12:11:03 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-04-28 12:11:03 -0700 |
commit | 7e3e0360b711568fb8ba5973accf51d51e746abc (patch) | |
tree | 1a8828481234fae6a6858e868f3c0f6058cb4673 /net/ipv4/route.c | |
parent | 4eb701dfc618491c9b97377df6e61de36dfc39ce (diff) |
[IPV4]: Incorrect permissions on route flush sysctl
This has been brought up before.. http://lkml.org/lkml/2000/1/21/116
but didnt seem to get resolved. This morning I got someone
file a bugzilla about it breaking sysctl(8).
Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/route.c')
-rw-r--r-- | net/ipv4/route.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index bb90a0c3a91e..a61a577f0f2b 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c @@ -2843,7 +2843,7 @@ ctl_table ipv4_route_table[] = { .procname = "flush", .data = &flush_delay, .maxlen = sizeof(int), - .mode = 0644, + .mode = 0200, .proc_handler = &ipv4_sysctl_rtcache_flush, .strategy = &ipv4_sysctl_rtcache_flush_strategy, }, |