aboutsummaryrefslogtreecommitdiff
path: root/lib/connect.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-11-01 23:37:45 +0100
committerDaniel Stenberg <daniel@haxx.se>2017-11-09 11:07:44 +0100
commit67c55a26d51149650e91a00b63cf5107989a57e9 (patch)
treeb041c360056052d48a51585153ab4cb9c8a4e354 /lib/connect.c
parente871ab56ed9cb0f3ab00b40e188f51cfb37b96cd (diff)
share: add support for sharing the connection cache
Diffstat (limited to 'lib/connect.c')
-rwxr-xr-xlib/connect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connect.c b/lib/connect.c
index 84a63aefd..28c6e9ed2 100755
--- a/lib/connect.c
+++ b/lib/connect.c
@@ -1224,7 +1224,7 @@ curl_socket_t Curl_getconnectinfo(struct Curl_easy *data,
find.tofind = data->state.lastconnect;
find.found = FALSE;
- Curl_conncache_foreach(data->multi_easy?
+ Curl_conncache_foreach(data, data->multi_easy?
&data->multi_easy->conn_cache:
&data->multi->conn_cache, &find, conn_is_conn);