Skip to content

Commit 60d9860

Browse files
committed
reorder comments
1 parent 03263fd commit 60d9860

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

sapi/cgi/cgi_main.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -2121,7 +2121,8 @@ consult the installation file that came with this distribution, or visit \n\
21212121

21222122
SetConsoleCtrlHandler(fastcgi_cleanup, TRUE);
21232123

2124-
SetEnvironmentVariable("PHP_FCGI_CHILDREN", NULL); /* kids will inherit the env, don't let them spawn */
2124+
/* kids will inherit the env, don't let them spawn */
2125+
SetEnvironmentVariable("PHP_FCGI_CHILDREN", NULL);
21252126

21262127
GetModuleFileName(NULL, my_name, MAX_PATH);
21272128
cmd_line = my_name;
@@ -2198,7 +2199,8 @@ consult the installation file that came with this distribution, or visit \n\
21982199
}
21992200

22002201
snprintf(kid_buf, 16, "%d", children);
2201-
SetEnvironmentVariable("PHP_FCGI_CHILDREN", kid_buf); /* restore my env */
2202+
/* restore my env */
2203+
SetEnvironmentVariable("PHP_FCGI_CHILDREN", kid_buf);
22022204

22032205
goto parent_out;
22042206
} else {

0 commit comments

Comments
 (0)