Updated network/ethernet_sam.c
Committed a file that was accidentally omitted in the version 0.78e commit
This commit is contained in:
parent
6c2d9e4f26
commit
78f4becd71
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ void status_callback(struct netif *netif)
|
|||
{
|
||||
RepRapNetworkMessage("Network up, IP=");
|
||||
ipaddr_ntoa_r(&(netif->ip_addr), c_mess, sizeof(c_mess));
|
||||
strncat(c_mess, sizeof(c_mess) - 1, "\n");
|
||||
strncat(c_mess, sizeof(c_mess) - strlen(c_mess) - 1, "\n");
|
||||
RepRapNetworkMessage(c_mess);
|
||||
netif->flags |= NETIF_FLAG_LINK_UP;
|
||||
}
|
||||
|
|
Reference in a new issue