Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Triger <kostat@mono-cvs.ximian.com>2005-11-03 14:09:40 +0300
committerKonstantin Triger <kostat@mono-cvs.ximian.com>2005-11-03 14:09:40 +0300
commit4a2a36de4b655a5a3213be6eddf20999bb1de3bd (patch)
treef43cfbaeea6ec9137d7ac3efce7e3c8a5d08f9fc /mcs/class/Novell.Directory.Ldap
parentf6f51dff84497b1e668083087473a64af0197126 (diff)
ifdef the unsupported method
svn path=/trunk/mcs/; revision=52503
Diffstat (limited to 'mcs/class/Novell.Directory.Ldap')
-rw-r--r--mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/ChangeLog4
-rw-r--r--mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/Connection.cs2
2 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/ChangeLog b/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/ChangeLog
index 0b2f00d3f92..66d6b2eda83 100644
--- a/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/ChangeLog
+++ b/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/ChangeLog
@@ -1,3 +1,7 @@
+2005-11-03 Konstantin Triger <kostat@mainsoft.com>
+
+ * Connection.cs: TARGET_JVM: ifdef the unsupported method
+
2005-10-30 Konstantin Triger <kostat@mainsoft.com>
* LdapConnection.cs: TARGET_JVM: if no credentials supplied,
diff --git a/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/Connection.cs b/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/Connection.cs
index bc0a26b62f6..78788c8b588 100644
--- a/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/Connection.cs
+++ b/mcs/class/Novell.Directory.Ldap/Novell.Directory.Ldap/Connection.cs
@@ -1115,8 +1115,10 @@ namespace Novell.Directory.Ldap
if (socket != null)
{
+#if !TARGET_JVM
// Just before closing the sockets, abort the reader thread
reader.Abort();
+#endif
// Close the socket
try
{