projects
/
curl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc28a9c
)
prevent compiler warning when built without engine support
author
Daniel Stenberg
<daniel@haxx.se>
Tue, 14 Dec 2004 22:06:25 +0000
(22:06 +0000)
committer
Daniel Stenberg
<daniel@haxx.se>
Tue, 14 Dec 2004 22:06:25 +0000
(22:06 +0000)
lib/ssluse.c
patch
|
blob
|
history
diff --git
a/lib/ssluse.c
b/lib/ssluse.c
index 887daeac4c42b8b7c91ebd86e4b9f3c0a11b3d3c..875f89a898ad60d625342283c97e8960e7f0f8b4 100644
(file)
--- 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