1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-09 14:11:29 +00:00

Changed the way cookie table fields are created in http.lua. This change

ensures that attribute names are always treated as lower case. [Patrik]
This commit is contained in:
patrik
2011-03-15 21:42:49 +00:00
parent b5a8cbfd02
commit b844caa6cd

View File

@@ -736,7 +736,7 @@ local function parse_set_cookie(s)
else
value = true
end
cookie[name] = value
cookie[name:lower()] = value
pos = skip_space(s, pos)
end