fix format

This commit is contained in:
neil 2021-11-06 11:28:11 +08:00
parent 3f58823430
commit b8bfb5a56c
1 changed files with 2 additions and 2 deletions

View File

@ -4207,9 +4207,9 @@ _isIP() {
#identifier
_getIdType() {
if _isIP "$1"; then
echo "$ID_TYPE_IP";
echo "$ID_TYPE_IP"
else
echo "$ID_TYPE_DNS";
echo "$ID_TYPE_DNS"
fi
}