aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorCharles Hardin <chardin@2wire.com>2007-11-22 19:35:15 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2007-11-22 19:35:15 +0800
commit435000bebd94aae3a7a50078d142d11683d3b193 (patch)
treef40c9c1a6b21db3d720ff608b3f81ce1f32f77ea /net
parent[IRDA]: Compilation for CONFIG_INET=n case (diff)
downloadlinux-dev-435000bebd94aae3a7a50078d142d11683d3b193.tar.xz
linux-dev-435000bebd94aae3a7a50078d142d11683d3b193.zip
[PFKEY]: Sending an SADB_GET responds with an SADB_GET
From: Charles Hardin <chardin@2wire.com> Kernel needs to respond to an SADB_GET with the same message type to conform to the RFC 2367 Section 3.1.5 Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'net')
-rw-r--r--net/key/af_key.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/key/af_key.c b/net/key/af_key.c
index 10c89d47f685..3b2d864ab942 100644
--- a/net/key/af_key.c
+++ b/net/key/af_key.c
@@ -1552,7 +1552,7 @@ static int pfkey_get(struct sock *sk, struct sk_buff *skb, struct sadb_msg *hdr,
out_hdr = (struct sadb_msg *) out_skb->data;
out_hdr->sadb_msg_version = hdr->sadb_msg_version;
- out_hdr->sadb_msg_type = SADB_DUMP;
+ out_hdr->sadb_msg_type = SADB_GET;
out_hdr->sadb_msg_satype = pfkey_proto2satype(proto);
out_hdr->sadb_msg_errno = 0;
out_hdr->sadb_msg_reserved = 0;