mirror of
https://github.com/openwrt/packages.git
synced 2025-12-10 12:41:22 +00:00
ddns-scripts: add colon char in DNS_CHARSET
The IPv6 address is separated by ':' instead of '.', so we need to add ':' in DNS_CHARSET. See: 'https://github.com/openwrt/packages/issues/25051' Fixes: #25051 Signed-off-by: Florian Eckert <fe@dev.tdt.de> * bump PKG_RELEASE * update commit message Signed-off-by: Xiaolong Zhang <xliilQwQ@outlook.com>
This commit is contained in:
committed by
Florian Eckert
parent
6a1b0e8c9e
commit
b962029fa8
@@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=ddns-scripts
|
||||
PKG_VERSION:=2.8.2
|
||||
PKG_RELEASE:=50
|
||||
PKG_RELEASE:=51
|
||||
|
||||
PKG_LICENSE:=GPL-2.0
|
||||
|
||||
|
||||
@@ -72,7 +72,7 @@ IPV6_REGEX="\(\([0-9A-Fa-f]\{1,4\}:\)\{1,\}\)\(\([0-9A-Fa-f]\{1,4\}\)\{0,1\}\)\(
|
||||
SHELL_ESCAPE="[\"\'\`\$\!();><{}?|\[\]\*\\\\]"
|
||||
|
||||
# dns character set. "-" must be the last character
|
||||
DNS_CHARSET="[@a-zA-Z0-9._-]"
|
||||
DNS_CHARSET="[@a-zA-Z0-9.:_-]"
|
||||
|
||||
# domains can have * for wildcard. "-" must be the last character
|
||||
DNS_CHARSET_DOMAIN="[@a-zA-Z0-9._*-]"
|
||||
|
||||
Reference in New Issue
Block a user