From 7e3e0360b711568fb8ba5973accf51d51e746abc Mon Sep 17 00:00:00 2001 From: Dave Jones Date: Thu, 28 Apr 2005 12:11:03 -0700 Subject: [PATCH] [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 Signed-off-by: David S. Miller --- net/ipv4/route.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, }, -- GitLab