summaryrefslogtreecommitdiff
path: root/lib/getinfo.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-12-14 09:36:22 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-12-14 09:36:22 +0000
commit07f107ae20f60247e716a814ec7bafbda9df945a (patch)
tree5dc2f358eb9e7204086874e1b94a41e7239ffc2a /lib/getinfo.c
parent5c14b3be6dc7fe44ee33642c4e32541e01a6a260 (diff)
downloadcurl-07f107ae20f60247e716a814ec7bafbda9df945a.tar.gz
Moved the engine stuff from the root-level of the SessionHandle struct to the
UrlState sub-struct. Also made the engine_list exist for non-ssl builds to make curl build.
Diffstat (limited to 'lib/getinfo.c')
-rw-r--r--lib/getinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/getinfo.c b/lib/getinfo.c
index e7a484524..084dddf9e 100644
--- a/lib/getinfo.c
+++ b/lib/getinfo.c
@@ -183,7 +183,7 @@ CURLcode Curl_getinfo(struct SessionHandle *data, CURLINFO info, ...)
break;
case CURLINFO_SSL_ENGINES:
Curl_SSL_engines_list(data);
- *param_slistp = data->engine_list;
+ *param_slistp = data->state.engine_list;
break;
default:
return CURLE_BAD_FUNCTION_ARGUMENT;