]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
fix compiler warning
authorDaniel Stenberg <daniel@haxx.se>
Wed, 13 Apr 2005 06:52:03 +0000 (06:52 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 13 Apr 2005 06:52:03 +0000 (06:52 +0000)
lib/ssluse.c

index d54a92b5d38b7b40202f8531ab771aa9a9b63d9d..0af7da41ef602030a44a5b138da3d96c643f12b6 100644 (file)
@@ -707,6 +707,8 @@ int Curl_ossl_close_all(struct SessionHandle *data)
     ENGINE_free(data->state.engine);
     data->state.engine = NULL;
   }
+#else
+  (void)data;
 #endif
   return 0;
 }