summaryrefslogtreecommitdiffstats
path: root/libssh/dh.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2010-09-01 16:05:06 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2010-09-01 16:05:06 +0200
commite67d834156a381fe7ef7933d135130083b86d1e3 (patch)
treee8f3485bc07f19cc2f2bef6ad0ef11af0606984d /libssh/dh.c
parenta93f2d8bfe98e2927fc7024973c52062ccd28b30 (diff)
downloadlibssh-e67d834156a381fe7ef7933d135130083b86d1e3.tar.gz
libssh-e67d834156a381fe7ef7933d135130083b86d1e3.tar.xz
libssh-e67d834156a381fe7ef7933d135130083b86d1e3.zip
Fix initialization of threading
Diffstat (limited to 'libssh/dh.c')
-rw-r--r--libssh/dh.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libssh/dh.c b/libssh/dh.c
index eff74bf..74d799e 100644
--- a/libssh/dh.c
+++ b/libssh/dh.c
@@ -55,7 +55,6 @@
#include "libssh/session.h"
#include "libssh/keys.h"
#include "libssh/dh.h"
-#include "libssh/threads.h"
/* todo: remove it */
#include "libssh/string.h"
@@ -156,7 +155,7 @@ void ssh_crypto_finalize(void) {
bignum_free(p);
p = NULL;
ssh_crypto_initialized=0;
- ssh_threads_finalize();
+
}
}