aboutsummaryrefslogtreecommitdiff
path: root/share/security/patches/EN-15:08/sendmail.patch
diff options
context:
space:
mode:
Diffstat (limited to 'share/security/patches/EN-15:08/sendmail.patch')
-rw-r--r--share/security/patches/EN-15:08/sendmail.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/share/security/patches/EN-15:08/sendmail.patch b/share/security/patches/EN-15:08/sendmail.patch
deleted file mode 100644
index 06e854ba76..0000000000
--- a/share/security/patches/EN-15:08/sendmail.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Index: contrib/sendmail/src/tls.c
-===================================================================
---- contrib/sendmail/src/tls.c
-+++ contrib/sendmail/src/tls.c
-@@ -650,7 +650,7 @@
- ** 1024 generate 1024 bit parameters
- ** 2048 generate 2048 bit parameters
- ** /file/name read parameters from /file/name
-- ** default is: 1024 for server, 512 for client (OK? XXX)
-+ ** default is: 1024
- */
-
- if (bitset(TLS_I_TRY_DH, req))
-@@ -676,8 +676,8 @@
- }
- if (dhparam == NULL)
- {
-- dhparam = srv ? "1" : "5";
-- req |= (srv ? TLS_I_DH1024 : TLS_I_DH512);
-+ dhparam = "1";
-+ req |= TLS_I_DH1024;
- }
- else if (*dhparam == '/')
- {