diff options
author | Vitaliy Makkoveev <mvs@cvs.openbsd.org> | 2022-08-28 21:35:13 +0000 |
---|---|---|
committer | Vitaliy Makkoveev <mvs@cvs.openbsd.org> | 2022-08-28 21:35:13 +0000 |
commit | 31feaae51c9922573ee3d887ace299f8a88fc802 (patch) | |
tree | a1b41d959f3bc717efb7a70a0db512ed03b26a3f /sys/net/pfkeyv2.c | |
parent | 93657dcbc8fa66fdad6c7b342e0501e189ed0c01 (diff) |
Move PRU_SENSE request to (*pru_sense)().
ok bluhm@
Diffstat (limited to 'sys/net/pfkeyv2.c')
-rw-r--r-- | sys/net/pfkeyv2.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/net/pfkeyv2.c b/sys/net/pfkeyv2.c index 549bb568468..8d1185d27ed 100644 --- a/sys/net/pfkeyv2.c +++ b/sys/net/pfkeyv2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfkeyv2.c,v 1.245 2022/08/28 20:32:01 bluhm Exp $ */ +/* $OpenBSD: pfkeyv2.c,v 1.246 2022/08/28 21:35:11 mvs Exp $ */ /* * @(#)COPYRIGHT 1.1 (NRL) 17 January 1995 @@ -417,10 +417,6 @@ pfkeyv2_usrreq(struct socket *so, int req, struct mbuf *m, error = EOPNOTSUPP; break; - case PRU_SENSE: - /* stat: don't bother with a blocksize. */ - break; - /* minimal support, just implement a fake peer address */ case PRU_SOCKADDR: error = EINVAL; |