From: Philip Prindeville Date: Sat, 15 Nov 2025 02:27:51 +0000 (-0700) Subject: isc-dhcp: Missing trailing dot on SRV RRs X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=13ea3654c3343361157e87d4128b555c58dff4c4;p=openwrt-packages.git isc-dhcp: Missing trailing dot on SRV RRs When generating SRV RRs we're omitting the trailing dot that roots the domain. Signed-off-by: Philip Prindeville --- diff --git a/net/isc-dhcp/Makefile b/net/isc-dhcp/Makefile index f44864231..6ee6b9000 100644 --- a/net/isc-dhcp/Makefile +++ b/net/isc-dhcp/Makefile @@ -11,7 +11,7 @@ PKG_NAME:=isc-dhcp UPSTREAM_NAME:=dhcp PKG_REALVERSION:=4.4.3-P1 PKG_VERSION:=4.4.3_p1 -PKG_RELEASE:=11 +PKG_RELEASE:=12 PKG_LICENSE:=BSD-3-Clause PKG_LICENSE_FILES:=LICENSE diff --git a/net/isc-dhcp/files/dhcpd.init b/net/isc-dhcp/files/dhcpd.init index 5b5f2b4e0..b6e454cc5 100755 --- a/net/isc-dhcp/files/dhcpd.init +++ b/net/isc-dhcp/files/dhcpd.init @@ -318,7 +318,7 @@ static_srvhost_add() { config_get weight "$cfg" "weight" [ -n "$weight" ] || return 0 - update "$srv.$domain." IN SRV "$priority" "$weight" "$port" "$target.$domain" + update "$srv.$domain." IN SRV "$priority" "$weight" "$port" "$target.$domain." } static_srvhosts() {