From c88a45062870f07af2f9bd14497340b6ac7a89ac Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Thu, 23 Jan 2020 23:42:28 -0800 Subject: [PATCH] ETHER: Restore missing _eth_devices() stub when networking is disabled --- sim_ether.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sim_ether.c b/sim_ether.c index 7666d538..0f5c369d 100644 --- a/sim_ether.c +++ b/sim_ether.c @@ -957,6 +957,8 @@ t_stat eth_filter (ETH_DEV* dev, int addr_count, ETH_MAC* const addresses, t_stat eth_filter_hash (ETH_DEV* dev, int addr_count, ETH_MAC* const addresses, ETH_BOOL all_multicast, ETH_BOOL promiscuous, ETH_MULTIHASH* const hash) {return SCPE_NOFNC;} +int _eth_devices (int max, ETH_LIST* dev) + {return -1;} const char *eth_version (void) {return NULL;} void eth_show_dev (FILE* st, ETH_DEV* dev)