Module Name: src
Committed By: rmind
Date: Fri Jun 6 00:25:28 UTC 2014
Modified Files:
src/sys/net: if_fddisubr.c
Log Message:
Adjust previous change for the #ifdef mess and fix the build.
To generate a diff of this commit:
cvs rdiff -u -r1.86 -r1.87 src/sys/net/if_fddisubr.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/net/if_fddisubr.c
diff -u src/sys/net/if_fddisubr.c:1.86 src/sys/net/if_fddisubr.c:1.87
--- src/sys/net/if_fddisubr.c:1.86 Thu Jun 5 23:48:16 2014
+++ src/sys/net/if_fddisubr.c Fri Jun 6 00:25:28 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: if_fddisubr.c,v 1.86 2014/06/05 23:48:16 rmind Exp $ */
+/* $NetBSD: if_fddisubr.c,v 1.87 2014/06/06 00:25:28 rmind Exp $ */
/*
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -96,7 +96,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_fddisubr.c,v 1.86 2014/06/05 23:48:16 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_fddisubr.c,v 1.87 2014/06/06 00:25:28 rmind Exp $");
#include "opt_gateway.h"
#include "opt_inet.h"
@@ -462,7 +462,7 @@ fddi_input(struct ifnet *ifp, struct mbu
#if defined(INET) || defined(INET6)
pktqueue_t *pktq = NULL;
#endif
-#if defined(NS) || defined(DECNET) || defined(IPX) || defined(NETATALK)
+#if defined(INET) || defined(INET6) || defined(NS) || defined(DECNET) || defined(IPX) || defined(NETATALK)
struct ifqueue *inq = NULL;
int s;
#endif