X-Git-Url: http://www.dolda2000.com/gitweb/?a=blobdiff_plain;f=src%2Fdirplex%2Fdirplex.c;h=55b464801f3a28b0c3fc8f0101b6845f32ccac69;hb=3d6044aba083ec8fa366bf85794a9ae62eab9858;hp=8b604d2dc945c67717e0e7afb553930b22cd9f35;hpb=cf6e7461a8b2fd0d3c2bb1369046adcf71b71187;p=ashd.git diff --git a/src/dirplex/dirplex.c b/src/dirplex/dirplex.c index 8b604d2..55b4648 100644 --- a/src/dirplex/dirplex.c +++ b/src/dirplex/dirplex.c @@ -59,9 +59,14 @@ static void handle(struct hthead *req, int fd, char *path, struct pattern *pat) { struct child *ch; struct config *ccf; + struct headmod *head; char *twd; - if(!strncmp(path, "./", 2)) + for(head = pat->headers; head != NULL; head = head->next) { + headrmheader(req, head->name); + headappheader(req, head->name, head->value); + } + if(!strncmp(path, "./", 2) && path[2]) path += 2; if(pat->fchild) { headappheader(req, "X-Ash-File", path); @@ -315,10 +320,12 @@ static void serve(struct hthead *req, int fd) static void chldhandler(int sig) { pid_t pid; + int st; - do { - pid = waitpid(-1, NULL, WNOHANG); - } while(pid > 0); + while((pid = waitpid(-1, &st, WNOHANG)) > 0) { + if(WCOREDUMP(st)) + flog(LOG_WARNING, "child process %i dumped core", pid); + } } static void sighandler(int sig)