isc-dhcp: Missing trailing dot on SRV RRs
authorPhilip Prindeville <[email protected]>
Sat, 15 Nov 2025 02:27:51 +0000 (19:27 -0700)
committerHannu Nyman <[email protected]>
Sat, 15 Nov 2025 07:02:02 +0000 (09:02 +0200)
When generating SRV RRs we're omitting the trailing dot that
roots the domain.

Signed-off-by: Philip Prindeville <[email protected]>
net/isc-dhcp/Makefile
net/isc-dhcp/files/dhcpd.init

index f4486423144abfa90a40e4024fd80f14d1fa9614..6ee6b90009a864905ebcdde958451b7ccd8f5a18 100644 (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
index 5b5f2b4e03797051a3e1dfdb4b1ad742cefe244f..b6e454cc5467644e6c7c42c1e0b72470d0564112 100755 (executable)
@@ -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() {