summaryrefslogtreecommitdiff
path: root/chat/weechat/patches/patch-src_core_wee-network.c
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2011-03-09 19:11:17 +0000
committertron <tron@pkgsrc.org>2011-03-09 19:11:17 +0000
commitd8d3c8329dee6f671bfd26f58cd8de4499779517 (patch)
tree5a2b5b135767a14e5b7a3a957d8e806acb6b7d6b /chat/weechat/patches/patch-src_core_wee-network.c
parent269fccbee5388a98cec2829d5b7d77c9c2c299e0 (diff)
downloadpkgsrc-d8d3c8329dee6f671bfd26f58cd8de4499779517.tar.gz
Pullup ticket #3383 - requested by tonio
chat/weechat: security update Revisions pulled up: - chat/weechat/Makefile 1.27 - chat/weechat/PLIST 1.14 - chat/weechat/distinfo 1.18 - chat/weechat/patches/patch-aa 1.4 - chat/weechat/patches/patch-ab 1.6 - chat/weechat/patches/patch-ac 1.5 - chat/weechat/patches/patch-ad 1.4 - chat/weechat/patches/patch-src_core_wee-hook.c 1.1 - chat/weechat/patches/patch-src_core_wee-hook.h 1.1 - chat/weechat/patches/patch-src_core_wee-network.c 1.1 - chat/weechat/patches/patch-src_plugins_irc_irc-server.c 1.1 - chat/weechat/patches/patch-src_plugins_rmodifier_rmodifier-config.h 1.1 --- Module Name: pkgsrc Committed By: tonio Date: Sat Mar 5 22:48:07 UTC 2011 Modified Files: pkgsrc/chat/weechat: Makefile PLIST distinfo pkgsrc/chat/weechat/patches: patch-aa patch-ab patch-ac patch-ad Added Files: pkgsrc/chat/weechat/patches: patch-src_core_wee-hook.c patch-src_core_wee-hook.h patch-src_core_wee-network.c patch-src_plugins_irc_irc-server.c patch-src_plugins_rmodifier_rmodifier-config.h Log Message: Update chat/weechat to 0.3.4 Fix for SA43543 and update kindly provided by gls@ This is a major release, with lot of bugs fixed and major new features. Among the new features: - 256 colors support, with unlimited number of nick colors - irc proxy (relay plugin) - redirection of IRC commands - command /notify - rmodifier plugin - regular expressions for highlights - color support for timestamp in chat buffer - irc option to force color for some nicks - share input line between buffers.
Diffstat (limited to 'chat/weechat/patches/patch-src_core_wee-network.c')
-rw-r--r--chat/weechat/patches/patch-src_core_wee-network.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/chat/weechat/patches/patch-src_core_wee-network.c b/chat/weechat/patches/patch-src_core_wee-network.c
new file mode 100644
index 00000000000..1d9aa2958d4
--- /dev/null
+++ b/chat/weechat/patches/patch-src_core_wee-network.c
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_core_wee-network.c,v 1.1.2.2 2011/03/09 19:11:19 tron Exp $
+
+Fix for http://secunia.com/advisories/43543/
+
+--- src/core/wee-network.c.orig 2011-01-01 13:48:17.000000000 +0000
++++ src/core/wee-network.c
+@@ -94,6 +94,8 @@ network_init ()
+ }
+ free (ca_path);
+ }
++ gnutls_certificate_set_verify_function (gnutls_xcred,
++ &hook_connect_gnutls_verify_certificates);
+ gnutls_certificate_client_set_retrieve_function (gnutls_xcred,
+ &hook_connect_gnutls_set_certificates);
+ network_init_ok = 1;