diff options
author | Anatol Belski <ab@php.net> | 2016-01-19 09:04:52 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-01-19 09:04:52 +0100 |
commit | 60d98605cae19554aad11f2569b476454fab7f32 (patch) | |
tree | e70eea5707272b99bf65d732639ff4734e386e4f | |
parent | 03263fded1f67d40725a59f937d32d21cd4007f3 (diff) | |
download | php-git-60d98605cae19554aad11f2569b476454fab7f32.tar.gz |
reorder comments
-rw-r--r-- | sapi/cgi/cgi_main.c | 6 |
1 files changed, 4 insertions, 2 deletions
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 { |