diff --git a/library/server/ewsgi/connectors/libfcgi/src/wgi_libfcgi_output_stream.e b/library/server/ewsgi/connectors/libfcgi/src/wgi_libfcgi_output_stream.e index dd798bf9..8f861f4a 100644 --- a/library/server/ewsgi/connectors/libfcgi/src/wgi_libfcgi_output_stream.e +++ b/library/server/ewsgi/connectors/libfcgi/src/wgi_libfcgi_output_stream.e @@ -42,18 +42,8 @@ feature -- Status writing -- Put status code line for `a_code' --| Note this is a default implementation, and could be redefined --| for instance in relation to NPH CGI script - local - s: STRING do - create s.make (16) - s.append ({HTTP_CONSTANTS}.http_version_1_1) - s.append_character (' ') - s.append_integer (a_code) - if attached http_status_code_message (a_code) as l_status_message then - s.append_character (' ') - s.append_string (l_status_message) - end - put_header_line (s) + --| Do not send any Status line back to the FastCGI client end feature -- Basic operation