Module Name: src
Committed By: rjs
Date: Sat Sep 15 13:33:15 UTC 2018
Modified Files:
src/sys/netinet6: dccp6_usrreq.c
Log Message:
Make it compile after change to non-variadic pr_input.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/netinet6/dccp6_usrreq.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/netinet6/dccp6_usrreq.c
diff -u src/sys/netinet6/dccp6_usrreq.c:1.11 src/sys/netinet6/dccp6_usrreq.c:1.12
--- src/sys/netinet6/dccp6_usrreq.c:1.11 Tue Jan 24 07:09:25 2017
+++ src/sys/netinet6/dccp6_usrreq.c Sat Sep 15 13:33:15 2018
@@ -1,5 +1,5 @@
/* $KAME: dccp6_usrreq.c,v 1.13 2005/07/27 08:42:56 nishida Exp $ */
-/* $NetBSD: dccp6_usrreq.c,v 1.11 2017/01/24 07:09:25 ozaki-r Exp $ */
+/* $NetBSD: dccp6_usrreq.c,v 1.12 2018/09/15 13:33:15 rjs Exp $ */
/*
* Copyright (C) 2003 WIDE Project.
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dccp6_usrreq.c,v 1.11 2017/01/24 07:09:25 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dccp6_usrreq.c,v 1.12 2018/09/15 13:33:15 rjs Exp $");
#ifdef _KERNEL_OPT
#include "opt_inet.h"
@@ -96,7 +96,7 @@ dccp6_input(struct mbuf **mp, int *offp,
IP6_EXTHDR_CHECK(m, *offp, sizeof(struct dccphdr), IPPROTO_DONE);
#endif
- dccp_input(m, *offp);
+ dccp_input(m, *offp, proto);
return IPPROTO_DONE;
}