Skip to content

Commit

Permalink
Merge branch 'sh/daemon'
Browse files Browse the repository at this point in the history
* sh/daemon:
  socksetup: don't return on set_reuse_addr() error
  • Loading branch information
Junio C Hamano committed Apr 24, 2006
2 parents 2effe71 + 0032d54 commit c6df547
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daemon.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit c6df547

Please sign in to comment.