From: Wilfried Goesgens Date: Sun, 20 Dec 2015 13:27:15 +0000 (+0100) Subject: Remove function from header. X-Git-Tag: Release_902~111 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=b70796f1d877f1c50cd5cf7903ad606777303691 Remove function from header. --- diff --git a/webcit/crypto.c b/webcit/crypto.c index f2752fd57..6925dfa8f 100644 --- a/webcit/crypto.c +++ b/webcit/crypto.c @@ -29,6 +29,8 @@ char *ssl_cipher_list = DEFAULT_SSL_CIPHER_LIST; pthread_key_t ThreadSSL; /* Per-thread SSL context */ +void ssl_lock(int mode, int n, const char *file, int line); + static unsigned long id_callback(void) { return (unsigned long) pthread_self(); diff --git a/webcit/webcit.h b/webcit/webcit.h index dac34321a..47186112e 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -545,7 +545,6 @@ extern char file_crpt_file_cer[PATH_MAX]; void init_ssl(void); void endtls(void); -void ssl_lock(int mode, int n, const char *file, int line); int starttls(int sock); extern SSL_CTX *ssl_ctx; int client_read_sslbuffer(StrBuf *buf, int timeout);