diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-12-14 22:06:25 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-12-14 22:06:25 +0000 |
commit | 553082e24a01f55e9de0638799ee0452fe826246 (patch) | |
tree | 5f4481ca843ef88663f452f04c471f83293dd184 | |
parent | dc28a9c0c19c324a0740669e3cc71e80b07a848e (diff) |
prevent compiler warning when built without engine support
-rw-r--r-- | lib/ssluse.c | 1 |
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 |