From 99637508f98bf6f40eb849a49d4968adf3294818 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Tue, 8 Apr 2003 23:04:36 +0000 Subject: [PATCH] MFH: erroneous newline at start --- sapi/cli/php_cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index 20a2b6bb36..5c4f4e83af 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -234,8 +234,8 @@ static void sapi_cli_send_header(sapi_header_struct *sapi_header, void *server_c { if (sapi_header) { PHPWRITE_H(sapi_header->header, sapi_header->header_len); + PHPWRITE_H("\r\n", 2); } - PHPWRITE_H("\r\n", 2); } -- 2.50.1