aboutsummaryrefslogtreecommitdiff
path: root/src/pki_gcrypt.c
diff options
context:
space:
mode:
authorAnderson Toshiyuki Sasaki <ansasaki@redhat.com>2018-07-31 16:15:01 +0200
committerAndreas Schneider <asn@cryptomilk.org>2018-08-03 16:43:03 +0200
commit9305762fcd16956d23451a0b2d43dabb6552d4aa (patch)
treed761be319b1a8eb766ad548214d084034a590aa9 /src/pki_gcrypt.c
parente0e0d62a71401a7f85c42f46363d05bd79421888 (diff)
downloadlibssh-9305762fcd16956d23451a0b2d43dabb6552d4aa.tar.gz
libssh-9305762fcd16956d23451a0b2d43dabb6552d4aa.tar.xz
libssh-9305762fcd16956d23451a0b2d43dabb6552d4aa.zip
Remove internal calls to ssh_init
Since the call is made automatically when the library is loaded, these calls are no longer required (if the library is not linked statically). Signed-off-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'src/pki_gcrypt.c')
-rw-r--r--src/pki_gcrypt.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/pki_gcrypt.c b/src/pki_gcrypt.c
index 4d6c2586..9f53321f 100644
--- a/src/pki_gcrypt.c
+++ b/src/pki_gcrypt.c
@@ -918,11 +918,6 @@ ssh_key pki_private_key_from_base64(const char *b64_key,
enum ssh_keytypes_e type;
int valid;
- /* needed for gcrypt initialization */
- if (ssh_init() < 0) {
- return NULL;
- }
-
type = pki_privatekey_type_from_string(b64_key);
if (type == SSH_KEYTYPE_UNKNOWN) {
SSH_LOG(SSH_LOG_WARN, "Unknown or invalid private key.");