Merge branch 'sh/daemon'

* sh/daemon:
  socksetup: don't return on set_reuse_addr() error
maint
Junio C Hamano 2006-04-24 02:08:28 -07:00
commit c6df547a41
1 changed files with 1 additions and 1 deletions

View File

@ -535,7 +535,7 @@ static int socksetup(int port, int **socklist_p)

if (set_reuse_addr(sockfd)) {
close(sockfd);
return 0; /* not fatal */
continue;
}

if (bind(sockfd, ai->ai_addr, ai->ai_addrlen) < 0) {