diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,6 +1,5 @@ #include "log.h" #include "log_colored.h" -#include "thread_mgmt.h" #include "server.h" #include "server_ssh.h" #ifdef HAVE_CONFIG_H @@ -21,7 +20,6 @@ int main(int argc, char *argv[]) LOG_SET_FUNCS_VA(LOG_COLORED_FUNCS); N("%s (C) 2018 Toni Uhlig (%s)", PACKAGE_STRING, PACKAGE_BUGREPORT); - thread_manager_init(8); memset(&srv[0], 0, sizeof(srv)); ssh_ports[0] = "2222"; @@ -55,5 +53,6 @@ int main(int argc, char *argv[]) N("%s", "Server epoll mainloop"); ABORT_ON_FATAL( server_mainloop_epoll( epoll_fd, &srv[0], srv_siz ), "Server epoll mainloop" ); + return 0; } |