summaryrefslogtreecommitdiff
path: root/chat/bitlbee/patches/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'chat/bitlbee/patches/patch-ac')
-rw-r--r--chat/bitlbee/patches/patch-ac20
1 files changed, 0 insertions, 20 deletions
diff --git a/chat/bitlbee/patches/patch-ac b/chat/bitlbee/patches/patch-ac
deleted file mode 100644
index 4d5b63ad066..00000000000
--- a/chat/bitlbee/patches/patch-ac
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-ac,v 1.2 2008/04/20 09:31:05 tonio Exp $
-
-Fix stalling issue with OpenSSL and Jabber
-From http://bugs.bitlbee.org/bitlbee/changeset/devel%2C359
-
---- lib/ssl_nss.c.orig Sat Jun 30 23:18:42 2007
-+++ lib/ssl_nss.c
-@@ -168,6 +168,12 @@ int ssl_write( void *conn, const char *b
- return( PR_Write ( ((struct scd*)conn)->prfd, buf, len ) );
- }
-
-+/* See ssl_openssl.c for an explanation. */
-+int ssl_pending( void *conn )
-+{
-+ return 0;
-+}
-+
- void ssl_disconnect( void *conn_ )
- {
- struct scd *conn = conn_;