remove obsolete break condition

This commit is contained in:
Stefan Lankes 2012-07-19 00:25:16 +02:00
parent 89c792cc03
commit da1d85cfd2

View file

@ -294,10 +294,8 @@ int initd(void* arg)
init_netifs();
/* test if interface is really up */
if (!netif_is_up(&default_netif)) {
if (!netif_is_up(&default_netif))
kputs("network interface is not up\n");
return -ENODEV;
}
#endif
#if !NO_SYS