Skip to content
Snippets Groups Projects
Commit 553082e2 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

prevent compiler warning when built without engine support

parent dc28a9c0
No related branches found
No related tags found
No related merge requests found
......@@ -534,6 +534,7 @@ CURLcode Curl_SSL_set_engine(struct SessionHandle *data, const char *engine)
data->state.engine = e;
return (CURLE_OK);
#else
(void)engine;
failf(data, "SSL Engine not supported");
return (CURLE_SSL_ENGINE_NOTFOUND);
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment