Skip to content

Commit da4775f

Browse files
committed
Merge branch 'PHP-8.2'
2 parents 4427b2e + 1b48a5c commit da4775f

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

sapi/fpm/fpm/fpm_main.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1801,7 +1801,8 @@ consult the installation file that came with this distribution, or visit \n\
18011801
zend_quiet_write(fpm_globals.send_config_pipe[1], &writeval, sizeof(writeval));
18021802
close(fpm_globals.send_config_pipe[1]);
18031803
}
1804-
return FPM_EXIT_CONFIG;
1804+
exit_status = FPM_EXIT_CONFIG;
1805+
goto out;
18051806
}
18061807

18071808
if (fpm_globals.send_config_pipe[1]) {

sapi/fpm/tests/bug68591-conf-test-group.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ $cfg = <<<EOT
1414
error_log = {{FILE:LOG}}
1515
[unconfined]
1616
listen = {{ADDR:UDS}}
17+
user = root
1718
group = aaaaaa
1819
pm = dynamic
1920
pm.max_children = 5

sapi/fpm/tests/bug68591-conf-test-listen-group.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ error_log = {{FILE:LOG}}
1515
[unconfined]
1616
listen = {{ADDR:UDS}}
1717
listen.group = aaaaaa
18+
user = root
1819
pm = dynamic
1920
pm.max_children = 5
2021
pm.start_servers = 2

sapi/fpm/tests/bug68591-conf-test-listen-owner.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ error_log = {{FILE:LOG}}
1515
[unconfined]
1616
listen = {{ADDR:UDS}}
1717
listen.owner = aaaaaa
18+
user = root
1819
pm = dynamic
1920
pm.max_children = 5
2021
pm.start_servers = 2

0 commit comments

Comments
 (0)