diff --git a/NEWS b/NEWS index 3ae54472f1..e7ee0b99bb 100644 --- a/NEWS +++ b/NEWS @@ -23,6 +23,8 @@ USE AT YOUR OWN RISK. NOT RECOMMENDED FOR PRODUCTION USE! * libnm: retire deprecated WiMAX API NMDeviceWimax and NMWimaxNsp. WiMAX support was removed from NetworkManager in version 1.2 (2016) and no such type instances would have been created by NMClient for a while now. +* DHCP: switch "internal" DHCPv4 plugin from code based on systemd to use nettools' + n-dhcp4 library. ============================================= NetworkManager-1.20 diff --git a/src/dhcp/nm-dhcp-systemd.c b/src/dhcp/nm-dhcp-systemd.c index 9ce39ebfd5..1518d46576 100644 --- a/src/dhcp/nm-dhcp-systemd.c +++ b/src/dhcp/nm-dhcp-systemd.c @@ -1099,7 +1099,7 @@ _get_type_per_addr_family (int addr_family) { nm_assert_addr_family (addr_family); - if (FALSE && addr_family == AF_INET) + if (addr_family == AF_INET) return nm_dhcp_nettools_get_type (); return nm_dhcp_systemd_get_type (); }