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:
-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
{