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 <philipp@redfish-solutions.com>
This commit is contained in:
Philip Prindeville
2025-11-14 19:27:51 -07:00
committed by Hannu Nyman
parent 98391be841
commit 13ea3654c3
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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() {