From 70b13b44c06363442fe3fd35b06d36d73a1e708d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Arkadiusz=20Mi=C5=9Bkiewicz?= Date: Fri, 26 Mar 2004 22:15:29 +0000 Subject: [PATCH] - missing newline at http-posting-uri Changed files: php-mail.patch -> 1.7 --- php-mail.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php-mail.patch b/php-mail.patch index 1db4c2b..0eee7eb 100644 --- a/php-mail.patch +++ b/php-mail.patch @@ -44,7 +44,7 @@ + } + if (zend_hash_find(PG(http_globals)[TRACK_VARS_SERVER]->value.ht, "SERVER_NAME", sizeof("SERVER_NAME"), (void **) &server_name)==SUCCESS) { + convert_to_string_ex(server_name); -+ fprintf(sendmail, "HTTP-Posting-URI: %s", Z_STRVAL_PP(server_name)); ++ fprintf(sendmail, "HTTP-Posting-URI: %s\n", Z_STRVAL_PP(server_name)); + if (zend_hash_find(PG(http_globals)[TRACK_VARS_SERVER]->value.ht, "SERVER_PORT", sizeof("SERVER_PORT"), (void **) &server_port)==SUCCESS) { + convert_to_string_ex(server_port); + fprintf(sendmail, ":%s", Z_STRVAL_PP(server_port)); -- 2.44.0