mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
fix for OpenBSD7
https://github.com/acmesh-official/acme.sh/issues/3833
This commit is contained in:
parent
ccd3d96942
commit
f66d9e1a22
7
acme.sh
7
acme.sh
@ -4196,7 +4196,12 @@ _match_issuer() {
|
|||||||
#ip
|
#ip
|
||||||
_isIPv4() {
|
_isIPv4() {
|
||||||
for seg in $(echo "$1" | tr '.' ' '); do
|
for seg in $(echo "$1" | tr '.' ' '); do
|
||||||
if [ $seg -ge 0 ] 2>/dev/null && [ $seg -le 255 ] 2>/dev/null; then
|
_debug2 seg "$seg"
|
||||||
|
if [ "$(echo "$seg" | tr -d [0-9])" ]; then
|
||||||
|
#not all number
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
if [ $seg -ge 0 ] && [ $seg -lt 256 ]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
return 1
|
return 1
|
||||||
|
Loading…
Reference in New Issue
Block a user