mirror of
https://github.com/joohoi/acme-dns.git
synced 2025-01-22 10:18:11 +07:00
Fix reserved name
This commit is contained in:
parent
dff7e92205
commit
f20ad11188
6
util.go
6
util.go
@ -5,7 +5,7 @@ import (
|
||||
"unicode/utf8"
|
||||
)
|
||||
|
||||
func NormalizeString(s string, len int) string {
|
||||
func NormalizeString(s string, length int) string {
|
||||
var ret string
|
||||
re, err := regexp.Compile("[^A-Za-z\\-0-9]+")
|
||||
if err != nil {
|
||||
@ -13,8 +13,8 @@ func NormalizeString(s string, len int) string {
|
||||
return ""
|
||||
}
|
||||
ret = re.ReplaceAllString(s, "")
|
||||
if utf8.RuneCountInString(ret) > len {
|
||||
ret = ret[0:len]
|
||||
if utf8.RuneCountInString(ret) > length {
|
||||
ret = ret[0:length]
|
||||
}
|
||||
return ret
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user