summaryrefslogtreecommitdiff
path: root/www/thy/patches
diff options
context:
space:
mode:
authoradam <adam>2005-09-06 15:19:31 +0000
committeradam <adam>2005-09-06 15:19:31 +0000
commit44646d587d4c2868f420bb750f9984693695cbfb (patch)
tree3932bdabbde6be985133719e7c9608de2e4f7a7e /www/thy/patches
parent4884ee58502945061dc876be036b96db836ef801 (diff)
downloadpkgsrc-44646d587d4c2868f420bb750f9984693695cbfb.tar.gz
Changes 0.9.4:
Took some time to do this release, and the fixes are numerous, an upgrade is highly recommended. Major changes include an increased header limit, which fixes inter-operation with some versions of lynx; a fix for a crash when trying to access user pages of people who do not actually exist (ie, /~badusername). On the new features front, the -U option now accepts usernames too, not just user ids.
Diffstat (limited to 'www/thy/patches')
-rw-r--r--www/thy/patches/patch-aa33
1 files changed, 33 insertions, 0 deletions
diff --git a/www/thy/patches/patch-aa b/www/thy/patches/patch-aa
new file mode 100644
index 00000000000..17f02e87d34
--- /dev/null
+++ b/www/thy/patches/patch-aa
@@ -0,0 +1,33 @@
+$NetBSD: patch-aa,v 1.1 2005/09/06 15:19:31 adam Exp $
+
+--- src/tls.c.orig 2005-09-06 17:06:05.000000000 +0000
++++ src/tls.c
+@@ -453,10 +453,6 @@ _thy_tls_session_create (void)
+
+ gnutls_handshake_set_private_extensions (session, 1);
+
+- if (cert_type == THY_TLS_CERT_TYPE_X509)
+- gnutls_certificate_server_set_select_function
+- (session, (gnutls_certificate_server_select_function *)
+- _thy_tls_session_cert_select);
+
+ return session;
+ }
+@@ -502,7 +498,7 @@ thy_rsa_params_generate (void)
+ bhc_exit (3);
+ }
+
+- gnutls_certificate_set_rsa_params (cred, rsa_params);
++ gnutls_certificate_set_rsa_export_params (cred, rsa_params);
+
+ return 0;
+ }
+@@ -794,7 +790,7 @@ thy_tls_reinit (int dh_gen)
+ thy_rsa_params_generate ();
+
+ gnutls_certificate_set_dh_params (cred, dh_params);
+- gnutls_certificate_set_rsa_params (cred, rsa_params);
++ gnutls_certificate_set_rsa_export_params (cred, rsa_params);
+ }
+
+ /** @internal Wrapper around gnutls_cipher_suite_get_name().