https://issues.apache.org/bugzilla/show_bug.cgi?id=51355
William A. Rowe Jr. <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from William A. Rowe Jr. <[email protected]> 2012-01-19 23:09:17 UTC --- Revision 1037727 - Directory Listing Modified Mon Nov 22 14:08:29 2010 UTC (13 months, 3 weeks ago) by trawick Fix regression in 2.3.6 which broke process controls when using vhost- specific configuration. vhost_id was referenced from the wrong structure, and never matched unless there were no vhost-specific directives in the vhost of the request. --- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_spawn_ctl.c 2010/11/22 14:08:25 1037726 +++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_spawn_ctl.c 2010/11/22 14:08:29 1037727 @@ -178,7 +178,7 @@ if (current_node->inode == command->inode && current_node->deviceid == command->deviceid && !strcmp(current_node->cmdline, command->cmdline) - && current_node->vhost_id == sconf->vhost_id + && current_node->vhost_id == command->vhost_id && current_node->uid == command->uid && current_node->gid == command->gid) break; Already done for 2.3.7, provided this was the instance you meant. Closing -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
