~ubuntu-branches/ubuntu/hardy/lighttpd/hardy-updates

« back to all changes in this revision

Viewing changes to src/mod_ssi.c

  • Committer: Bazaar Package Importer
  • Author(s): Lukas Fittl
  • Date: 2006-10-10 13:57:38 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20061010135738-gn4pp1ut1s1g27pb
Tags: 1.4.13~r1370-1ubuntu1
* Merge from Debian unstable (Closes: Malone #64900). Remaining changes:
  - Add an additional dependency on libterm-readline-perl-perl
    (Malone #43895)

Show diffs side-by-side

added added

removed removed

Lines of Context:
722
722
                        close(from_exec_fds[1]);
723
723
                        
724
724
                        /* wait for the client to end */
 
725
 
 
726
                        /*
 
727
                         * FIXME: if we get interrupted by a SIGCHILD we count this as error
 
728
                         *
 
729
                         * for now it only happened on OpenBSD.
 
730
                         * 
 
731
                         * that leads to zombies and missing output
 
732
                         */
725
733
                        if (-1 == waitpid(pid, &status, 0)) {
726
734
                                log_error_write(srv, __FILE__, __LINE__, "ss", "waitpid failed:", strerror(errno));
727
735
                        } else if (WIFEXITED(status)) {