mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 19:02:09 +00:00
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:
committed by
Hannu Nyman
parent
98391be841
commit
13ea3654c3
@@ -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
|
||||
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user