aboutsummaryrefslogtreecommitdiff
path: root/sys/netipx/ipx_usrreq.c
diff options
context:
space:
mode:
authorEivind Eklund <eivind@FreeBSD.org>1997-12-15 20:31:25 +0000
committerEivind Eklund <eivind@FreeBSD.org>1997-12-15 20:31:25 +0000
commit430df5f4b75085bc187ec0bc2b2b53182c8bf03b (patch)
tree4197204f07068246ab33fade0633734d0d7ec21d /sys/netipx/ipx_usrreq.c
parente525599ef1c213a866335e68edf3fc7bdd8d47f3 (diff)
downloadsrc-430df5f4b75085bc187ec0bc2b2b53182c8bf03b.tar.gz
src-430df5f4b75085bc187ec0bc2b2b53182c8bf03b.zip
Notes
Diffstat (limited to 'sys/netipx/ipx_usrreq.c')
-rw-r--r--sys/netipx/ipx_usrreq.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/netipx/ipx_usrreq.c b/sys/netipx/ipx_usrreq.c
index 44eb0dbf3baf..e65548ae2772 100644
--- a/sys/netipx/ipx_usrreq.c
+++ b/sys/netipx/ipx_usrreq.c
@@ -33,9 +33,11 @@
*
* @(#)ipx_usrreq.c
*
- * $Id: ipx_usrreq.c,v 1.16 1997/08/16 19:15:45 wollman Exp $
+ * $Id: ipx_usrreq.c,v 1.17 1997/09/14 03:10:41 peter Exp $
*/
+#include "opt_ipx.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
@@ -407,11 +409,13 @@ ipx_ctloutput(req, so, level, name, value, p)
error = ipxip_route(so, *value, p);
break;
#endif /* IPXIP */
-#ifdef IPXTUNNEL
- case SO_IPXTUNNEL_ROUTE
+#ifdef IPTUNNEL
+#if 0
+ case SO_IPXTUNNEL_ROUTE:
error = ipxtun_route(so, *value, p);
break;
#endif
+#endif
default:
error = EINVAL;
}