aboutsummaryrefslogtreecommitdiffstats
path: root/lang/ruby18/files/patch-lib_net_imap.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lang/ruby18/files/patch-lib_net_imap.rb')
-rw-r--r--lang/ruby18/files/patch-lib_net_imap.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/lang/ruby18/files/patch-lib_net_imap.rb b/lang/ruby18/files/patch-lib_net_imap.rb
deleted file mode 100644
index 8ff68bb20ee2..000000000000
--- a/lang/ruby18/files/patch-lib_net_imap.rb
+++ /dev/null
@@ -1,15 +0,0 @@
---- lib/net/imap.rb.orig Tue Feb 13 02:01:19 2007
-+++ lib/net/imap.rb Tue May 22 20:44:37 2007
-@@ -284,7 +284,11 @@
-
- # Disconnects from the server.
- def disconnect
-- @sock.shutdown unless @usessl
-+ if SSL::SSLSocket === @sock
-+ @sock.io.shutdown
-+ else
-+ @sock.shutdown
-+ end
- @receiver_thread.join
- @sock.close
- end