From: Daniel Stenberg Date: Tue, 14 Dec 2004 22:06:25 +0000 (+0000) Subject: prevent compiler warning when built without engine support X-Git-Tag: curl-7_12_3~47 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=553082e24a01f55e9de0638799ee0452fe826246;p=thirdparty%2Fcurl.git prevent compiler warning when built without engine support --- diff --git a/lib/ssluse.c b/lib/ssluse.c index 887daeac4c..875f89a898 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