summaryrefslogtreecommitdiff
path: root/x11/kdelibs4/patches/patch-ak
diff options
context:
space:
mode:
Diffstat (limited to 'x11/kdelibs4/patches/patch-ak')
-rw-r--r--x11/kdelibs4/patches/patch-ak21
1 files changed, 0 insertions, 21 deletions
diff --git a/x11/kdelibs4/patches/patch-ak b/x11/kdelibs4/patches/patch-ak
deleted file mode 100644
index 8707889397c..00000000000
--- a/x11/kdelibs4/patches/patch-ak
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-ak,v 1.1.1.1 2009/10/02 19:19:00 markd Exp $
-
-SVN commit 1028997.
-
---- kdecore/network/k3socketdevice.cpp.orig 2009-09-24 09:21:38.000000000 -0600
-+++ kdecore/network/k3socketdevice.cpp 2009-09-24 09:23:15.000000000 -0600
-@@ -352,9 +352,13 @@ bool KSocketDevice::connect(const KResol
- if (kde_connect(m_sockfd, address.address(), address.length()) == -1)
- {
- if (errno == EISCONN)
-- return true; // we're already connected
-+ {
-+ KActiveSocketBase::open(Unbuffered | mode);
-+ return true; // we're already connected
-+ }
- else if (errno == EALREADY || errno == EINPROGRESS)
- {
-+ KActiveSocketBase::open(Unbuffered | mode);
- setError(InProgress);
- return true;
- }