diff options
Diffstat (limited to 'sys/kern/uipc_usrreq.c')
-rw-r--r-- | sys/kern/uipc_usrreq.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/sys/kern/uipc_usrreq.c b/sys/kern/uipc_usrreq.c index 328d799acd2..4d47ed60567 100644 --- a/sys/kern/uipc_usrreq.c +++ b/sys/kern/uipc_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uipc_usrreq.c,v 1.49 2010/10/18 04:31:01 guenther Exp $ */ +/* $OpenBSD: uipc_usrreq.c,v 1.50 2011/04/04 12:44:10 deraadt Exp $ */ /* $NetBSD: uipc_usrreq.c,v 1.18 1996/02/09 19:00:50 christos Exp $ */ /* @@ -288,17 +288,6 @@ uipc_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam, nam->m_len = 0; break; -#ifdef COMPAT_O47 - case PRU_PEEREID: - if (unp->unp_flags & UNP_FEIDS) { - nam->m_len = sizeof(struct sockpeercred); - bcopy((caddr_t)(&(unp->unp_connid)), - mtod(nam, caddr_t), (unsigned)nam->m_len); - } else - nam->m_len = 0; - break; -#endif /* COMPAT_O47 */ - case PRU_SLOWTIMO: break; |