Fix comment, getsockname() can fail legitimately.
from ircd-ratbox r25967 (jilles)
This commit is contained in:
parent
9692f954c6
commit
d60a42a27f
1 changed files with 1 additions and 2 deletions
|
@ -568,8 +568,7 @@ accept_callback(rb_fde_t *F, int status, struct sockaddr *addr, rb_socklen_t add
|
|||
|
||||
if(getsockname(rb_get_fd(F), (struct sockaddr *) &lip, &locallen) < 0)
|
||||
{
|
||||
/* this shouldn't fail so... */
|
||||
/* XXX add logging of this */
|
||||
/* this can fail if the connection disappeared in the meantime */
|
||||
rb_close(F);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue