diff options
author | Charles Hardin <chardin@2wire.com> | 2007-11-22 06:35:15 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2007-11-22 06:35:15 -0500 |
commit | 435000bebd94aae3a7a50078d142d11683d3b193 (patch) | |
tree | f40c9c1a6b21db3d720ff608b3f81ce1f32f77ea /net/key | |
parent | 8c92e6b0bf48a1735ddc61ebb08a0bb77c6bfa23 (diff) |
[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/key')
-rw-r--r-- | net/key/af_key.c | 2 |
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, | |||
1552 | 1552 | ||
1553 | out_hdr = (struct sadb_msg *) out_skb->data; | 1553 | out_hdr = (struct sadb_msg *) out_skb->data; |
1554 | out_hdr->sadb_msg_version = hdr->sadb_msg_version; | 1554 | out_hdr->sadb_msg_version = hdr->sadb_msg_version; |
1555 | out_hdr->sadb_msg_type = SADB_DUMP; | 1555 | out_hdr->sadb_msg_type = SADB_GET; |
1556 | out_hdr->sadb_msg_satype = pfkey_proto2satype(proto); | 1556 | out_hdr->sadb_msg_satype = pfkey_proto2satype(proto); |
1557 | out_hdr->sadb_msg_errno = 0; | 1557 | out_hdr->sadb_msg_errno = 0; |
1558 | out_hdr->sadb_msg_reserved = 0; | 1558 | out_hdr->sadb_msg_reserved = 0; |