Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/netinet6 Make it compile after change to non-variadic pr...
details: https://anonhg.NetBSD.org/src/rev/913d4ad1cb83
branches: trunk
changeset: 993504:913d4ad1cb83
user: rjs <rjs%NetBSD.org@localhost>
date: Sat Sep 15 13:33:15 2018 +0000
description:
Make it compile after change to non-variadic pr_input.
diffstat:
sys/netinet6/dccp6_usrreq.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (28 lines):
diff -r 3ffff099db2f -r 913d4ad1cb83 sys/netinet6/dccp6_usrreq.c
--- a/sys/netinet6/dccp6_usrreq.c Sat Sep 15 08:48:18 2018 +0000
+++ b/sys/netinet6/dccp6_usrreq.c Sat Sep 15 13:33:15 2018 +0000
@@ -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 @@
IP6_EXTHDR_CHECK(m, *offp, sizeof(struct dccphdr), IPPROTO_DONE);
#endif
- dccp_input(m, *offp);
+ dccp_input(m, *offp, proto);
return IPPROTO_DONE;
}
Home |
Main Index |
Thread Index |
Old Index