aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ed
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1994-12-22 21:56:22 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1994-12-22 21:56:22 +0000
commitdd2e4102219ce94f36901e8659a56f321933b0ba (patch)
treedd986184c8951fb36a642ae622be3def3ec5b792 /sys/dev/ed
parent186c582fdfcb3cb667af79150b6decea3a35e760 (diff)
Notes
Diffstat (limited to 'sys/dev/ed')
-rw-r--r--sys/dev/ed/if_ed.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c
index 2b2ff84ae08a..39622f109728 100644
--- a/sys/dev/ed/if_ed.c
+++ b/sys/dev/ed/if_ed.c
@@ -13,7 +13,7 @@
* the SMC Elite Ultra (8216), the 3Com 3c503, the NE1000 and NE2000,
* and a variety of similar clones.
*
- * $Id: if_ed.c,v 1.57 1994/11/24 14:29:16 davidg Exp $
+ * $Id: if_ed.c,v 1.58 1994/11/26 10:51:49 davidg Exp $
*/
#include "ed.h"
@@ -1925,14 +1925,7 @@ ed_ioctl(ifp, command, data)
#ifdef INET
case AF_INET:
ed_init(ifp->if_unit); /* before arpwhohas */
-
- /*
- * See if another station has *our* IP address. i.e.:
- * There is an address conflict! If a conflict exists,
- * a message is sent to the console.
- */
- ((struct arpcom *) ifp)->ac_ipaddr = IA_SIN(ifa)->sin_addr;
- arpwhohas((struct arpcom *) ifp, &IA_SIN(ifa)->sin_addr);
+ arp_ifinit((struct arpcom *)ifp, ifa);
break;
#endif
#ifdef NS