Skip to content

Commit

Permalink
Fix those refs
Browse files Browse the repository at this point in the history
  • Loading branch information
thebentern committed Oct 26, 2022
1 parent 0586897 commit 82bcd39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mesh/eth/ethClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ bool initEthernet()
status = Ethernet.begin(mac);
} else if (config.network.eth_mode == Config_NetworkConfig_EthMode_STATIC) {
DEBUG_MSG("starting Ethernet Static\n");
Ethernet.begin(mac, config.network.eth_config.ip, config.network.eth_config.dns, config.network.eth_config.subnet);
Ethernet.begin(mac, config.network.ipv4_config.ip, config.network.ipv4_config.dns, config.network.ipv4_config.subnet);
} else {
DEBUG_MSG("Ethernet Disabled\n");
return false;
Expand Down

0 comments on commit 82bcd39

Please sign in to comment.