diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-03-27 16:48:58 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-03-27 16:48:58 +0100 |
commit | 540756bf5446f30b66b716027b4f8550a462f4fc (patch) | |
tree | 4ab8124a532d498eaba1985ba9642d77542ba87c /src/plugins/scripts/python | |
parent | 6e7b62be9723205cb4f7dc69966ed80ed7119dd6 (diff) | |
download | weechat-540756bf5446f30b66b716027b4f8550a462f4fc.zip |
Fix SSL connection to some IRC servers using Diffie Hellman and small exchange keys (bug #25996)
Diffstat (limited to 'src/plugins/scripts/python')
-rw-r--r-- | src/plugins/scripts/python/weechat-python-api.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/scripts/python/weechat-python-api.c b/src/plugins/scripts/python/weechat-python-api.c index 4f0d3a8d5..e42cbbbb4 100644 --- a/src/plugins/scripts/python/weechat-python-api.c +++ b/src/plugins/scripts/python/weechat-python-api.c @@ -3054,10 +3054,10 @@ weechat_python_api_hook_process (PyObject *self, PyObject *args) int weechat_python_api_hook_connect_cb (void *data, int status, - const char *ip_address) + const char *error, const char *ip_address) { struct t_script_callback *script_callback; - char *python_argv[3], str_status[32], empty_arg[1] = { '\0' }; + char *python_argv[4], str_status[32], empty_arg[1] = { '\0' }; int *rc, ret; script_callback = (struct t_script_callback *)data; @@ -3068,7 +3068,8 @@ weechat_python_api_hook_connect_cb (void *data, int status, python_argv[0] = str_status; python_argv[1] = (ip_address) ? (char *)ip_address : empty_arg; - python_argv[2] = NULL; + python_argv[2] = (error) ? (char *)error : empty_arg; + python_argv[3] = NULL; rc = (int *) weechat_python_exec (script_callback->script, WEECHAT_SCRIPT_EXEC_INT, |