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:
authorMiguel de Icaza <miguel@gnome.org>2005-03-31 02:17:10 +0400
committerMiguel de Icaza <miguel@gnome.org>2005-03-31 02:17:10 +0400
commitaf152d7dc90d09d1aecb8e0d9eb26cb8c24dcc9d (patch)
treecdde8772b7c18b438f4aa11c2f7efdeb143fb9ee
parenta0ee96d72ec56fa96595c6bf74b9ab26d20d6f95 (diff)
Another one, this is from Gonzalo
svn path=/branches/mono-1-1-6/mcs/; revision=42397
-rw-r--r--mcs/class/System/System.Net/ChangeLog5
-rw-r--r--mcs/class/System/System.Net/WebConnection.cs1
2 files changed, 5 insertions, 1 deletions
diff --git a/mcs/class/System/System.Net/ChangeLog b/mcs/class/System/System.Net/ChangeLog
index 47f8ca28d95..78f659755e8 100644
--- a/mcs/class/System/System.Net/ChangeLog
+++ b/mcs/class/System/System.Net/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+ * WebConnection.cs: we don't need to trigger the next queued request
+ until the response is closed.
+
2005-03-29 Miguel de Icaza <miguel@novell.com>
* HttpWebResponse.cs: Handle quotations in the cookies values, per
diff --git a/mcs/class/System/System.Net/WebConnection.cs b/mcs/class/System/System.Net/WebConnection.cs
index 1abe30bbded..c6cc8b5fc87 100644
--- a/mcs/class/System/System.Net/WebConnection.cs
+++ b/mcs/class/System/System.Net/WebConnection.cs
@@ -375,7 +375,6 @@ namespace System.Net
if (!ExpectContent (data.StatusCode))
stream.ForceCompletion ();
- stream.CheckComplete ();
data.request.SetResponseData (data);
}