From: Anatol Belski Date: Tue, 19 Jan 2016 08:04:52 +0000 (+0100) Subject: reorder comments X-Git-Tag: php-7.2.0alpha1~620^2~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=60d98605cae19554aad11f2569b476454fab7f32;p=php reorder comments --- diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index 48307f3b8a..4e092cb0ea 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -2121,7 +2121,8 @@ consult the installation file that came with this distribution, or visit \n\ SetConsoleCtrlHandler(fastcgi_cleanup, TRUE); - SetEnvironmentVariable("PHP_FCGI_CHILDREN", NULL); /* kids will inherit the env, don't let them spawn */ + /* kids will inherit the env, don't let them spawn */ + SetEnvironmentVariable("PHP_FCGI_CHILDREN", NULL); GetModuleFileName(NULL, my_name, MAX_PATH); cmd_line = my_name; @@ -2198,7 +2199,8 @@ consult the installation file that came with this distribution, or visit \n\ } snprintf(kid_buf, 16, "%d", children); - SetEnvironmentVariable("PHP_FCGI_CHILDREN", kid_buf); /* restore my env */ + /* restore my env */ + SetEnvironmentVariable("PHP_FCGI_CHILDREN", kid_buf); goto parent_out; } else {