aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2016-12-28 12:44:27 +0100
committerPřemysl Janouch <p.janouch@gmail.com>2016-12-28 12:44:27 +0100
commiteb70bf3fbc69459043196de96030ada6015ce27f (patch)
treeb30fe23d37368ac5dcd05feab4d4c4c169a43d25
parentd86a68f510924d9afc4eec6970c68597783d245d (diff)
downloadxK-eb70bf3fbc69459043196de96030ada6015ce27f.tar.gz
xK-eb70bf3fbc69459043196de96030ada6015ce27f.tar.xz
xK-eb70bf3fbc69459043196de96030ada6015ce27f.zip
Cleanup
-rw-r--r--common.c15
-rw-r--r--degesch.c10
-rw-r--r--kike.c11
-rw-r--r--zyklonb.c12
4 files changed, 18 insertions, 30 deletions
diff --git a/common.c b/common.c
index 347e82b..a822847 100644
--- a/common.c
+++ b/common.c
@@ -34,6 +34,21 @@
#include <arpa/inet.h>
#include <netinet/tcp.h>
+static void
+init_openssl (void)
+{
+#if OPENSSL_VERSION_NUMBER < 0x10100000L
+ SSL_library_init ();
+ // XXX: this list is probably not complete
+ atexit (EVP_cleanup);
+ SSL_load_error_strings ();
+ atexit (ERR_free_strings);
+#else
+ // Cleanup is done automatically via atexit()
+ OPENSSL_init_ssl (0, NULL);
+#endif
+}
+
// --- To be moved to liberty --------------------------------------------------
static ssize_t
diff --git a/degesch.c b/degesch.c
index 3263ae0..6156981 100644
--- a/degesch.c
+++ b/degesch.c
@@ -14009,15 +14009,7 @@ main (int argc, char *argv[])
app_context_init (&ctx);
g_ctx = &ctx;
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
- SSL_library_init ();
- atexit (EVP_cleanup);
- SSL_load_error_strings ();
- atexit (ERR_free_strings);
-#else
- // Cleanup is done automatically via atexit()
- OPENSSL_init_ssl (0, NULL);
-#endif
+ init_openssl ();
// Bootstrap configuration, so that we can access schema items at all
register_config_modules (&ctx);
diff --git a/kike.c b/kike.c
index da9bdc5..aba5bba 100644
--- a/kike.c
+++ b/kike.c
@@ -4043,16 +4043,7 @@ main (int argc, char *argv[])
print_status (PROGRAM_NAME " " PROGRAM_VERSION " starting");
setup_signal_handlers ();
-
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
- SSL_library_init ();
- atexit (EVP_cleanup);
- SSL_load_error_strings ();
- atexit (ERR_free_strings);
-#else
- // Cleanup is done automatically via atexit()
- OPENSSL_init_ssl (0, NULL);
-#endif
+ init_openssl ();
struct server_context ctx;
server_context_init (&ctx);
diff --git a/zyklonb.c b/zyklonb.c
index 3688a6a..e84134c 100644
--- a/zyklonb.c
+++ b/zyklonb.c
@@ -2010,17 +2010,7 @@ main (int argc, char *argv[])
print_status (PROGRAM_NAME " " PROGRAM_VERSION " starting");
setup_signal_handlers ();
-
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
- SSL_library_init ();
- // XXX: this list is probably not complete
- atexit (EVP_cleanup);
- SSL_load_error_strings ();
- atexit (ERR_free_strings);
-#else
- // Cleanup is done automatically via atexit()
- OPENSSL_init_ssl (0, NULL);
-#endif
+ init_openssl ();
struct bot_context ctx;
bot_context_init (&ctx);