Removed a few obsolete calls.

Updated tests/all.ecf to include a few missing libraries.
This commit is contained in:
Jocelyn Fiat
2018-02-02 22:40:18 +01:00
parent 7b0ccc0aec
commit 6a779797a5
4 changed files with 13 additions and 6 deletions

View File

@@ -111,9 +111,9 @@ feature -- Execution
i := l_raw_header.substring_index ("%R%N", 1)
if i > 0 then
-- Skip the first status line.
create h.make_from_raw_header_data (l_raw_header.substring (i + 2, l_raw_header.count).as_string_8_conversion) -- NOTE: it is string 8 per nature.
create h.make_from_raw_header_data (l_raw_header.substring (i + 2, l_raw_header.count).to_string_8) -- NOTE: it is string 8 per nature.
else
create h.make_from_raw_header_data (l_raw_header.as_string_8_conversion)
create h.make_from_raw_header_data (l_raw_header.to_string_8)
end
if attached l_remote_uri.host as l_remote_host then
if l_remote_uri.port > 0 then