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;
}
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 {