fixed compilation of libfcgi tests.

This commit is contained in:
2013-11-20 09:17:41 +01:00
parent 2978ec33b7
commit 20367851cc

View File

@@ -55,16 +55,14 @@ feature -- Access
Result := "</body>%N</html>%N" Result := "</body>%N</html>%N"
end end
print_environment_variables (vars: HASH_TABLE [STRING, STRING]) print_environment_variables (vars: TABLE_ITERABLE [READABLE_STRING_8, READABLE_STRING_GENERAL])
local local
utf: UTF_CONVERTER
do do
from across
vars.start vars as ic
until
vars.after
loop loop
fcgi.put_string ("<li><strong>" + vars.key_for_iteration + "</strong> = " + vars.item_for_iteration + "</li>%N") fcgi.put_string ("<li><strong>" + utf.utf_32_string_to_utf_8_string_8 (ic.key.as_string_8) + "</strong> = " + ic.item + "</li>%N")
vars.forth
end end
end end