From: Jim Jagielski Date: Fri, 1 Jun 2007 23:44:36 +0000 (+0000) Subject: Minor nit... be consistent and unset even now :) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21fc8bc1c226a889f7a040e66fe3774946259859;p=thirdparty%2Fapache%2Fhttpd.git Minor nit... be consistent and unset even now :) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/httpd-pid-table@543667 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/mpmt_os2/mpmt_os2.c b/server/mpm/mpmt_os2/mpmt_os2.c index 94c54975479..1d6377fc60c 100644 --- a/server/mpm/mpmt_os2/mpmt_os2.c +++ b/server/mpm/mpmt_os2/mpmt_os2.c @@ -337,6 +337,7 @@ static char master_main() pid = ap_scoreboard_image->parent[n].pid; if (ap_in_pid_table(pid)) { kill(pid, is_graceful ? SIGHUP : SIGTERM); + ap_unset_pid_table(pid); } }