]> granicus.if.org Git - curl/commitdiff
Björn Stenberg corrected the silly '(void)data' usage when SSL is not
authorDaniel Stenberg <daniel@haxx.se>
Wed, 14 Mar 2001 10:15:42 +0000 (10:15 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 14 Mar 2001 10:15:42 +0000 (10:15 +0000)
used

lib/ssluse.c

index 648d7c6bfcab44e68c14c05560c5e7b5faf33686..716ceb4e6847012a7f007c0fe8fa04916f8c00ba 100644 (file)
@@ -358,7 +358,7 @@ Curl_SSLConnect(struct connectdata *conn)
   X509_free(conn->ssl.server_cert);
 #else /* USE_SSLEAY */
   /* this is for "-ansi -Wall -pedantic" to stop complaining!   (rabe) */
-  (void) data;
+  (void) conn;
 #endif
   return 0;
 }