2007-01-20 [colin] 2.7.1cvs40
[claws.git] / src / common / ssl.c
index c3dc384de1b5ead39b66e5b47867095a51110e46..ef8dbacb2608119d4e946f88b91eabfe53a27d66 100644 (file)
@@ -84,7 +84,7 @@ void ssl_done(void)
 }
 
 #ifdef USE_PTHREAD
-void *SSL_connect_thread(void *data)
+static void *SSL_connect_thread(void *data)
 {
        thread_data *td = (thread_data *)data;
        int result = -1;
@@ -98,7 +98,7 @@ void *SSL_connect_thread(void *data)
 }
 #endif
 
-gint SSL_connect_nb(SSL *ssl)
+static gint SSL_connect_nb(SSL *ssl)
 {
 #if (defined USE_PTHREAD && defined __GLIBC__ && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)))
        thread_data *td = g_new0(thread_data, 1);