Module Name:    src
Committed By:   ozaki-r
Date:           Fri Nov 27 02:54:22 UTC 2015

Modified Files:
        src/sys/netinet6: in6.c

Log Message:
Replace __debugused with __diagused

Declaring __debugused was just a mistake. This fixes builds of kernels with
DEBUG but without DIAGNOSTIC.


To generate a diff of this commit:
cvs rdiff -u -r1.192 -r1.193 src/sys/netinet6/in6.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/in6.c
diff -u src/sys/netinet6/in6.c:1.192 src/sys/netinet6/in6.c:1.193
--- src/sys/netinet6/in6.c:1.192	Wed Nov 25 07:06:19 2015
+++ src/sys/netinet6/in6.c	Fri Nov 27 02:54:22 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: in6.c,v 1.192 2015/11/25 07:06:19 ozaki-r Exp $	*/
+/*	$NetBSD: in6.c,v 1.193 2015/11/27 02:54:22 ozaki-r Exp $	*/
 /*	$KAME: in6.c,v 1.198 2001/07/18 09:12:38 itojun Exp $	*/
 
 /*
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: in6.c,v 1.192 2015/11/25 07:06:19 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: in6.c,v 1.193 2015/11/27 02:54:22 ozaki-r Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -2284,7 +2284,7 @@ in6_lltable_match_prefix(const struct so
 static void
 in6_lltable_free_entry(struct lltable *llt, struct llentry *lle)
 {
-	struct ifnet *ifp __debugused;
+	struct ifnet *ifp __diagused;
 
 	LLE_WLOCK_ASSERT(lle);
 	KASSERT(llt != NULL);

Reply via email to