Skip to content

Commit 13ea365

Browse files
pprindevillehnyman
authored andcommitted
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 <[email protected]>
1 parent 98391be commit 13ea365

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

net/isc-dhcp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ PKG_NAME:=isc-dhcp
1111
UPSTREAM_NAME:=dhcp
1212
PKG_REALVERSION:=4.4.3-P1
1313
PKG_VERSION:=4.4.3_p1
14-
PKG_RELEASE:=11
14+
PKG_RELEASE:=12
1515

1616
PKG_LICENSE:=BSD-3-Clause
1717
PKG_LICENSE_FILES:=LICENSE

net/isc-dhcp/files/dhcpd.init

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ static_srvhost_add() {
318318
config_get weight "$cfg" "weight"
319319
[ -n "$weight" ] || return 0
320320

321-
update "$srv.$domain." IN SRV "$priority" "$weight" "$port" "$target.$domain"
321+
update "$srv.$domain." IN SRV "$priority" "$weight" "$port" "$target.$domain."
322322
}
323323

324324
static_srvhosts() {

0 commit comments

Comments
 (0)