gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 53/282: wolfssh: make it init properly via Curl_ssh_init()


From: gnunet
Subject: [gnurl] 53/282: wolfssh: make it init properly via Curl_ssh_init()
Date: Wed, 01 Apr 2020 14:28:38 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 920af1a6643af4f5f6ea58bead2bcc19c527f517
Author: Daniel Stenberg <address@hidden>
AuthorDate: Thu Jan 23 20:05:22 2020 +0100

    wolfssh: make it init properly via Curl_ssh_init()
    
    Closes #4846
---
 lib/easy.c         | 7 -------
 lib/vssh/wolfssh.c | 5 +++++
 2 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/lib/easy.c b/lib/easy.c
index 9211bc219..d1b60861f 100644
--- a/lib/easy.c
+++ b/lib/easy.c
@@ -193,13 +193,6 @@ static CURLcode global_init(long flags, bool memoryfuncs)
   }
 #endif
 
-#ifdef USE_WOLFSSH
-  if(WS_SUCCESS != wolfSSH_Init()) {
-    DEBUGF(fprintf(stderr, "Error: wolfSSH_Init failed\n"));
-    return CURLE_FAILED_INIT;
-  }
-#endif
-
   if(flags & CURL_GLOBAL_ACK_EINTR)
     Curl_ack_eintr = 1;
 
diff --git a/lib/vssh/wolfssh.c b/lib/vssh/wolfssh.c
index f9c43de70..363a52c77 100644
--- a/lib/vssh/wolfssh.c
+++ b/lib/vssh/wolfssh.c
@@ -1142,6 +1142,11 @@ size_t Curl_ssh_version(char *buffer, size_t buflen)
 
 CURLcode Curl_ssh_init(void)
 {
+  if(WS_SUCCESS != wolfSSH_Init()) {
+    DEBUGF(fprintf(stderr, "Error: wolfSSH_Init failed\n"));
+    return CURLE_FAILED_INIT;
+  }
+
   return CURLE_OK;
 }
 void Curl_ssh_cleanup(void)

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]