From 5b1c985a0e7df03aefffa13bc6c765859819a180 Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Thu, 30 Sep 2010 11:10:08 +0200 Subject: Changed the threads cbks from struct to publ func --- src/threads.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/threads.c') diff --git a/src/threads.c b/src/threads.c index 60d5dee..db7c216 100644 --- a/src/threads.c +++ b/src/threads.c @@ -39,7 +39,7 @@ static unsigned long threads_id_noop (void){ return 1; } -struct ssh_threads_callbacks_struct ssh_threads_noop = +static struct ssh_threads_callbacks_struct ssh_threads_noop = { "threads_noop", threads_noop, @@ -49,6 +49,10 @@ struct ssh_threads_callbacks_struct ssh_threads_noop = threads_id_noop }; +struct ssh_threads_callbacks_struct *ssh_threads_get_noop(){ + return &ssh_threads_noop; +} + static struct ssh_threads_callbacks_struct *user_callbacks =&ssh_threads_noop; #ifdef HAVE_LIBGCRYPT -- cgit