Remove overly aggressive #error

Change-Id: I8c20606d386d713cac51b620d1fcdb479a3622fe
This commit is contained in:
Jasper Lievisse Adriaanse 2017-09-04 13:24:54 +02:00
parent 884e4da673
commit 83d0b621c0
1 changed files with 1 additions and 4 deletions

View File

@ -82,8 +82,6 @@ static net_type_t iface_type(const char *ifname) {
if (strcmp(devtype, "wwan") == 0)
return NET_TYPE_OTHER;
return NET_TYPE_OTHER;
#elif __OpenBSD__
/*
*First determine if the device is a wireless device by trying two ioctl(2)
@ -126,9 +124,8 @@ static net_type_t iface_type(const char *ifname) {
close(s);
return NET_TYPE_ETHERNET;
}
#else
#error Missing implementation to determine interface type.
#endif
return NET_TYPE_OTHER;
}
const char *first_eth_interface(const net_type_t type) {