@@ -67,7 +67,7 @@ static int load_symbols(void *handle) {
}
-int load_ssl() {
+int load_libssl() {
if (ssl_ctx) {
return 0;
@@ -115,7 +115,7 @@ int load_ssl() {
-int unload_ssl() {
+int unload_libssl() {
if (libssl_handle) {
#ifdef EGG_SSL_EXT
/* cleanup mess when quiting */
@@ -34,8 +34,8 @@ typedef void (*SSL_CTX_free_t)(SSL_CTX*);
typedef SSL_CTX* (*SSL_CTX_new_t)(const SSL_METHOD*);
typedef long (*SSL_CTX_ctrl_t)(SSL_CTX*, int, long, void*);
-int load_ssl();
-int unload_ssl();
+int load_libssl();
+int unload_libssl();
extern SSL_CTX *ssl_ctx;
@@ -198,7 +198,7 @@ void fatal(const char *s, int recoverable)
if (ssl_use) {
- unload_ssl();
+ unload_libssl();
#endif
@@ -623,7 +623,7 @@ int open_telnet_raw(int sock, const char *ipIn, port_t sport, bool proxy_on, int
int net_switch_to_ssl(int sock) {
int i = 0;
- if (load_ssl()) {
+ if (load_libssl()) {
debug0("Error while switching to SSL - error loading library");