From owner-svn-src-head@FreeBSD.ORG Sun Jan 4 21:13:51 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B48D106566B; Sun, 4 Jan 2009 21:13:51 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7A0258FC1B; Sun, 4 Jan 2009 21:13:51 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n04LDpdw074401; Sun, 4 Jan 2009 21:13:51 GMT (envelope-from rwatson@svn.freebsd.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n04LDpiw074400; Sun, 4 Jan 2009 21:13:51 GMT (envelope-from rwatson@svn.freebsd.org) Message-Id: <200901042113.n04LDpiw074400@svn.freebsd.org> From: Robert Watson Date: Sun, 4 Jan 2009 21:13:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r186750 - head/sys/netinet6 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jan 2009 21:13:52 -0000 Author: rwatson Date: Sun Jan 4 21:13:51 2009 New Revision: 186750 URL: http://svn.freebsd.org/changeset/base/186750 Log: struct ip6protosw is a copy of struct protosw, so remove pr_usrreq there to reflect removal from struct protosw. Spotted by: ed Modified: head/sys/netinet6/ip6protosw.h Modified: head/sys/netinet6/ip6protosw.h ============================================================================== --- head/sys/netinet6/ip6protosw.h Sun Jan 4 20:59:23 2009 (r186749) +++ head/sys/netinet6/ip6protosw.h Sun Jan 4 21:13:51 2009 (r186750) @@ -126,11 +126,6 @@ struct ip6protosw { int (*pr_ctloutput) /* control output (from above) */ __P((struct socket *, struct sockopt *)); -/* user-protocol hook */ - int (*pr_usrreq) /* user request: see list below */ - __P((struct socket *, int, struct mbuf *, - struct mbuf *, struct mbuf *, struct thread *)); - /* utility hooks */ void (*pr_init) /* initialization hook */ __P((void));