Removed lower case when returing the host alt name (#6501)

This commit is contained in:
MatteoBiscosi 2022-04-11 08:55:56 +02:00
parent 2ed9a5b7e9
commit 98cf55e5e7

View file

@ -1738,10 +1738,6 @@ function getHostAltName(host_info)
alt_name = ntop.getCache(getHostAltNamesKey(host_key))
end
if not isEmptyString(alt_name) then
alt_name = string.lower(alt_name)
end
return alt_name
end