From 35f55478204f9ec04abd172945396fe9b23d780e Mon Sep 17 00:00:00 2001 From: Simon Schubert <2@0x2c.org> Date: Thu, 28 Oct 2010 22:58:30 +0200 Subject: [PATCH] drop 25-unsupported-starttls.patch: already applied --- debian/patches/25-unsupported-starttls.patch | 27 -------------------- 1 file changed, 27 deletions(-) delete mode 100644 debian/patches/25-unsupported-starttls.patch diff --git a/debian/patches/25-unsupported-starttls.patch b/debian/patches/25-unsupported-starttls.patch deleted file mode 100644 index cb34484..0000000 --- a/debian/patches/25-unsupported-starttls.patch +++ /dev/null @@ -1,27 +0,0 @@ -Description: Fix a crash when the SMTP server does not support STARTTLS. -Origin: other: http://svn.ringlet.net/svn/ringlet/mail/dma/ -Bug-Debian: http://bugs.debian.org/547594 -Forwarded: yes -Author: Peter Pentchev -Last-Update: 2010-06-21 - ---- a/net.c -+++ b/net.c -@@ -304,12 +304,12 @@ - static void - close_connection(int fd) - { -- if (((config.features & SECURETRANS) != 0) && -- ((config.features & NOSSL) == 0)) -- SSL_shutdown(config.ssl); -- -- if (config.ssl != NULL) -+ if (config.ssl != NULL) { -+ if (((config.features & SECURETRANS) != 0) && -+ ((config.features & NOSSL) == 0)) -+ SSL_shutdown(config.ssl); - SSL_free(config.ssl); -+ } - - close(fd); - } -- 2.47.3