PDP11, all VAXen: Remove duplicate network address conflict message
Address conflict message now generated within the eth_check_address_conflict routine.
This commit is contained in:
parent
7478ddc7d4
commit
f6906af25a
2 changed files with 0 additions and 8 deletions
|
@ -2901,10 +2901,6 @@ t_stat xq_attach(UNIT* uptr, CONST char* cptr)
|
|||
xq->var->must_poll = (SCPE_OK != eth_clr_async(xq->var->etherface));
|
||||
}
|
||||
if (SCPE_OK != eth_check_address_conflict (xq->var->etherface, &xq->var->mac)) {
|
||||
char buf[32];
|
||||
|
||||
eth_mac_fmt(&xq->var->mac, buf); /* format ethernet mac address */
|
||||
sim_printf("%s: MAC Address Conflict on LAN for address %s, change the MAC address to a unique value\n", xq->dev->name, buf);
|
||||
eth_close(xq->var->etherface);
|
||||
free(tptr);
|
||||
free(xq->var->etherface);
|
||||
|
|
|
@ -1776,10 +1776,6 @@ t_stat xu_attach(UNIT* uptr, CONST char* cptr)
|
|||
}
|
||||
eth_set_throttle (xu->var->etherface, xu->var->throttle_time, xu->var->throttle_burst, xu->var->throttle_delay);
|
||||
if (SCPE_OK != eth_check_address_conflict (xu->var->etherface, &xu->var->mac)) {
|
||||
char buf[32];
|
||||
|
||||
eth_mac_fmt(&xu->var->mac, buf); /* format ethernet mac address */
|
||||
sim_printf("%s: MAC Address Conflict on LAN for address %s\n", xu->dev->name, buf);
|
||||
eth_close(xu->var->etherface);
|
||||
free(tptr);
|
||||
free(xu->var->etherface);
|
||||
|
|
Loading…
Add table
Reference in a new issue