* is ok with us doing this.
*/
if ((!export_all_trees && access("git-daemon-export-ok", F_OK)) ||
- access("objects/00", X_OK) ||
+ access("objects/", X_OK) ||
access("HEAD", R_OK)) {
logerror("Not a valid git-daemon-enabled repository: '%s'", dir);
return -1;
pfd[i].fd = socklist[i];
pfd[i].events = POLLIN;
}
+
+ signal(SIGCHLD, child_handler);
for (;;) {
int i;
{
int socknum, *socklist;
- signal(SIGCHLD, child_handler);
-
socknum = socksetup(port, &socklist);
if (socknum == 0)
die("unable to allocate any listen sockets on port %u", port);