aboutsummaryrefslogtreecommitdiff
path: root/sys/netipx/ipx_ip.c
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1995-11-24 12:07:33 +0000
committerBruce Evans <bde@FreeBSD.org>1995-11-24 12:07:33 +0000
commitaa0bd366d566d61a3d8e9d7f322ebf5e057f02aa (patch)
tree5a094932d4587b7d8fed157f9fcc870aa9040b32 /sys/netipx/ipx_ip.c
parent530e1829ef5abf17f302365fee284b2a2f32f149 (diff)
downloadsrc-aa0bd366d566d61a3d8e9d7f322ebf5e057f02aa.tar.gz
src-aa0bd366d566d61a3d8e9d7f322ebf5e057f02aa.zip
Fixed a bogus name (ifn_en) that was introduced when a type mismatch
was fixed.
Notes
Notes: svn path=/head/; revision=12469
Diffstat (limited to 'sys/netipx/ipx_ip.c')
-rw-r--r--sys/netipx/ipx_ip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netipx/ipx_ip.c b/sys/netipx/ipx_ip.c
index 6b5cd202ce95..168b23c84e3a 100644
--- a/sys/netipx/ipx_ip.c
+++ b/sys/netipx/ipx_ip.c
@@ -33,7 +33,7 @@
*
* @(#)ipx_ip.c
*
- * $Id: ipx_ip.c,v 1.3 1995/10/31 23:36:31 julian Exp $
+ * $Id: ipx_ip.c,v 1.4 1995/11/04 09:02:58 julian Exp $
*/
/*
@@ -228,13 +228,13 @@ bad:
/* ARGSUSED */
int
-ipxipoutput(ifn_en, m, dst, rt)
- struct ifnet *ifn_en;
+ipxipoutput(ifp, m, dst, rt)
+ struct ifnet *ifp;
register struct mbuf *m;
struct sockaddr *dst;
struct rtentry *rt;
{
- register struct ifnet_en *ifn = (struct ifnet_en *)ifn_en;
+ register struct ifnet_en *ifn = (struct ifnet_en *)ifp;
register struct ip *ip;
register struct route *ro = &(ifn->ifen_route);
register int len = 0;