aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-01-21 23:48:58 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-01-21 23:48:58 +0000
commitef0ed9b7206e186c7d3d08b91885efdd0d0db9df (patch)
tree160d1f8e9e1b01f55e968957093d7c91a21291dc /lib/url.c
parenta674654f83b61f1c83714e99af59b789bc747bea (diff)
Dmitry Kurochkin removed the cancelled state for pipelining, as we agreed
that it is bad anyway. Starting now, removing a handle that is in used in a pipeline will break the pipeline - it'll be set back up again but still...
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 7099f116a..5a47e289a 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -2477,7 +2477,7 @@ ConnectionExists(struct SessionHandle *data,
}
if(match) {
- if(!Curl_isPipeliningEnabled(data)) {
+ if(!check->is_in_pipeline) {
/* The check for a dead socket makes sense only in the
non-pipelining case */
bool dead = SocketIsDead(check->sock[FIRSTSOCKET]);