[IRC-Dev CVS] [CVS] Module ircd-ircdev: Change committed
Brought to you by:
zolty
From: Toni G. <zo...@us...> - 2008-01-27 12:47:30
|
Committer : zolty CVSROOT : /cvsroot/irc-dev Module : ircd-ircdev Commit time: 2008-01-27 12:47:27 UTC Modified files: ircd/s_bsd.c Log message: SSL Fix ---------------------- diff included ---------------------- Index: ircd-ircdev/ircd/s_bsd.c diff -u ircd-ircdev/ircd/s_bsd.c:1.25 ircd-ircdev/ircd/s_bsd.c:1.26 --- ircd-ircdev/ircd/s_bsd.c:1.25 Tue Dec 11 15:38:26 2007 +++ ircd-ircdev/ircd/s_bsd.c Sun Jan 27 04:47:16 2008 @@ -21,7 +21,7 @@ */ /** @file * @brief Functions that now (or in the past) relied on BSD APIs. - * @version $Id: s_bsd.c,v 1.25 2007/12/11 23:38:26 zolty Exp $ + * @version $Id: s_bsd.c,v 1.26 2008/01/27 12:47:16 zolty Exp $ */ #include "config.h" @@ -924,6 +924,9 @@ if (!con_freeflag(con) && !cptr) free_connection(con); +#ifdef USE_SSL + ssl_free(ev_socket(ev)); +#endif break; case ET_CONNECT: /* socket connection completed */ ----------------------- End of diff ----------------------- |