1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-11 10:19:03 +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 else
value = true value = true
end end
cookie[name] = value cookie[name:lower()] = value
pos = skip_space(s, pos) pos = skip_space(s, pos)
end end