diff options
author | Patrick McHardy <kaber@trash.net> | 2005-11-21 00:16:13 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-11-21 00:16:13 -0500 |
commit | a516b04950f62d36b33db00c0d3c69d09dae99a9 (patch) | |
tree | e5b51543ab34f4cbec9ead2fa68590afba3e71f2 | |
parent | bd4cfb594bdea00c3920b31bd12f497fc4a2e79c (diff) |
[DCCP]: Add missing no_policy flag to struct net_protocol
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/dccp/proto.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/dccp/proto.c b/net/dccp/proto.c index e0ace7cbb996..8a6b2a9e4581 100644 --- a/net/dccp/proto.c +++ b/net/dccp/proto.c | |||
@@ -46,6 +46,7 @@ atomic_t dccp_orphan_count = ATOMIC_INIT(0); | |||
46 | static struct net_protocol dccp_protocol = { | 46 | static struct net_protocol dccp_protocol = { |
47 | .handler = dccp_v4_rcv, | 47 | .handler = dccp_v4_rcv, |
48 | .err_handler = dccp_v4_err, | 48 | .err_handler = dccp_v4_err, |
49 | .no_policy = 1, | ||
49 | }; | 50 | }; |
50 | 51 | ||
51 | const char *dccp_packet_name(const int type) | 52 | const char *dccp_packet_name(const int type) |