Merge branch 'gnutls' of git://git.leptoquark.net/charybdis

This commit is contained in:
Keith Buck 2012-04-07 03:29:13 +00:00
commit e0550bba26

View file

@ -352,7 +352,7 @@ rb_ssl_listen(rb_fde_t *F, int backlog, int defer_accept)
{
int result;
result = listen(F->fd, backlog, defer_accept);
result = rb_listen(F->fd, backlog, defer_accept);
F->type = RB_FD_SOCKET | RB_FD_LISTEN | RB_FD_SSL;
return result;