diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2007-02-14 00:33:29 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-14 08:09:55 -0800 |
commit | f7d749fa0a4de0a5445a4f023023f9e702238653 (patch) | |
tree | f9abe6b87300186a26c7df787ba77b9b1cb61c1d /net | |
parent | d87abf42762ee3e77b118ea96517cf8c7d33abc1 (diff) | |
download | op-kernel-dev-f7d749fa0a4de0a5445a4f023023f9e702238653.zip op-kernel-dev-f7d749fa0a4de0a5445a4f023023f9e702238653.tar.gz |
[PATCH] sysctl: dccp: remove unnecessary insert_at_head flag
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Cc: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/dccp/sysctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/sysctl.c b/net/dccp/sysctl.c index fdcfca3..3391631 100644 --- a/net/dccp/sysctl.c +++ b/net/dccp/sysctl.c @@ -127,7 +127,7 @@ static struct ctl_table_header *dccp_table_header; int __init dccp_sysctl_init(void) { - dccp_table_header = register_sysctl_table(dccp_root_table, 1); + dccp_table_header = register_sysctl_table(dccp_root_table, 0); return dccp_table_header != NULL ? 0 : -ENOMEM; } |