summaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@mandriva.com>2006-03-20 22:47:37 -0800
committerDavid S. Miller <davem@davemloft.net>2006-03-20 22:47:37 -0800
commitc841aa030437bdf1b6fb22d93eb760e35380a4ed (patch)
treef23ec860be9deb035eacc15359549d2808a7ee15 /security
parente35fc385655ac584902edd98dd07ac488e986aa1 (diff)
downloadop-kernel-dev-c841aa030437bdf1b6fb22d93eb760e35380a4ed.zip
op-kernel-dev-c841aa030437bdf1b6fb22d93eb760e35380a4ed.tar.gz
[SECURITY] getpeersec: Fix build breakage
A recent changeset removes dummy_socket_getpeersec, replacing it with two new functions, but still references the removed function in the security_fixup_ops table, fix it by doing the replacement operation in the fixup table too. Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'security')
-rw-r--r--security/dummy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/security/dummy.c b/security/dummy.c
index a326d6e..a678f09 100644
--- a/security/dummy.c
+++ b/security/dummy.c
@@ -1008,7 +1008,8 @@ void security_fixup_ops (struct security_operations *ops)
set_to_dummy_if_null(ops, socket_getsockopt);
set_to_dummy_if_null(ops, socket_shutdown);
set_to_dummy_if_null(ops, socket_sock_rcv_skb);
- set_to_dummy_if_null(ops, socket_getpeersec);
+ set_to_dummy_if_null(ops, socket_getpeersec_stream);
+ set_to_dummy_if_null(ops, socket_getpeersec_dgram);
set_to_dummy_if_null(ops, sk_alloc_security);
set_to_dummy_if_null(ops, sk_free_security);
set_to_dummy_if_null(ops, sk_getsid);
OpenPOWER on IntegriCloud