commit 3b65c5f23e21b53d85ac400bc919aa118d5f8376
parent 7d27118e15d6e048b664363ff9c6d9f99e1f5ebd
Author: Antoine Amarilli <a3nm@a3nm.net>
Date: Sun, 17 Jun 2012 01:44:59 +0200
disable ssl for now to be able to use old libircclient
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/irctk.c b/irctk.c
@@ -997,7 +997,8 @@ static void* irc_thread (void *arg)
{
irc_session_t * sp = (irc_session_t *) arg;
// TODO, also do you need '#' or not?
- irc_option_set(sp, LIBIRC_OPTION_SSL_NO_VERIFY);
+ // TODO when SSL will be supported
+ // irc_option_set(sp, LIBIRC_OPTION_SSL_NO_VERIFY);
irc_run(sp);
return 0;
}