Fixed a bug in http-userdir-enum (was missing an argument to http.pipeline_add())

This commit is contained in:
ron 2010-11-17 20:24:48 +00:00
parent 78877af7e8
commit f4769f75e9

View file

@ -78,9 +78,9 @@ action = function(host, port)
end
if(use_head) then
all = http.pipeline_add("/~" .. usernames[i], nil, 'HEAD')
all = http.pipeline_add("/~" .. usernames[i], nil, all, 'HEAD')
else
all = http.pipeline_add("/~" .. usernames[i], nil, 'GET')
all = http.pipeline_add("/~" .. usernames[i], nil, all, 'GET')
end
end