aboutsummaryrefslogtreecommitdiff
path: root/lib/ssluse.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-12-14 22:06:25 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-12-14 22:06:25 +0000
commit553082e24a01f55e9de0638799ee0452fe826246 (patch)
tree5f4481ca843ef88663f452f04c471f83293dd184 /lib/ssluse.c
parentdc28a9c0c19c324a0740669e3cc71e80b07a848e (diff)
prevent compiler warning when built without engine support
Diffstat (limited to 'lib/ssluse.c')
-rw-r--r--lib/ssluse.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c
index 887daeac4..875f89a89 100644
--- a/lib/ssluse.c
+++ b/lib/ssluse.c
@@ -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