From 13ea3654c3343361157e87d4128b555c58dff4c4 Mon Sep 17 00:00:00 2001 From: Philip Prindeville Date: Fri, 14 Nov 2025 19:27:51 -0700 Subject: [PATCH] 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 --- net/isc-dhcp/Makefile | 2 +- net/isc-dhcp/files/dhcpd.init | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/isc-dhcp/Makefile b/net/isc-dhcp/Makefile index f448642314..6ee6b90009 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 5b5f2b4e03..b6e454cc54 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() { -- 2.30.2