diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-07-18 16:04:16 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-07-18 16:04:16 +0000 |
commit | 05065d99c78a53f6ab97086574a01d75be79decc (patch) | |
tree | 2f9f09b2b30cc41ccd58808030a38660205a46fb /mail/dbmail-devel/files/patch-2.0.4_bug198_pool.c | |
parent | 679f73e91c22fe170f78e55bd8ed2adf7a40849c (diff) |
Notes
Diffstat (limited to 'mail/dbmail-devel/files/patch-2.0.4_bug198_pool.c')
-rw-r--r-- | mail/dbmail-devel/files/patch-2.0.4_bug198_pool.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mail/dbmail-devel/files/patch-2.0.4_bug198_pool.c b/mail/dbmail-devel/files/patch-2.0.4_bug198_pool.c new file mode 100644 index 000000000000..c21e745d9dda --- /dev/null +++ b/mail/dbmail-devel/files/patch-2.0.4_bug198_pool.c @@ -0,0 +1,13 @@ +Index: pool.c +=================================================================== +--- pool.c (revision 1763) ++++ pool.c (revision 1787) +@@ -433,7 +433,7 @@ + + for (i = 0; i < scoreboard->conf->maxChildren; i++) { + chpid = scoreboard->child[i].pid; +- if (chpid != 0) ++ if (chpid > 0) + kill(chpid, SIGKILL);; + scoreboard_release(chpid); + } |