From e124e4b64c93fe68e088c2ad202cb7070b86da51 Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Thu, 24 Dec 2015 23:00:09 +0100 Subject: [PATCH] starttls: Update for client fd hash removal. --- modules/m_starttls.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/m_starttls.c b/modules/m_starttls.c index e9bf6318..504df56a 100644 --- a/modules/m_starttls.c +++ b/modules/m_starttls.c @@ -77,9 +77,7 @@ mr_starttls(struct Client *client_p, struct Client *source_p, int parc, const ch ctl = start_ssld_accept(client_p->localClient->F, F[1], rb_get_fd(F[0])); if (ctl != NULL) { - del_from_cli_fd_hash(client_p); client_p->localClient->F = F[0]; - add_to_cli_fd_hash(client_p); client_p->localClient->ssl_ctl = ctl; SetSSL(client_p); }