]> granicus.if.org Git - php/commitdiff
reorder comments
authorAnatol Belski <ab@php.net>
Tue, 19 Jan 2016 08:04:52 +0000 (09:04 +0100)
committerAnatol Belski <ab@php.net>
Tue, 19 Jan 2016 08:04:52 +0000 (09:04 +0100)
sapi/cgi/cgi_main.c

index 48307f3b8a8493f8d79fb1bebca314ea9d477fd2..4e092cb0eac7ec63050458ae8de09cefa570eedf 100644 (file)
@@ -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 {