- Update to 1.4.0 - Added libssh2_session_supported_algs() - Added libssh2_session_banner_get() - Added libssh2_sftp_get_channel() - libssh2.h: bump the default window size to 256K - sftp-seek: clear EOF flag - userauth: provide more informations if ssh pub key extraction fails - ssh2_exec: skip error outputs for EAGAIN - LIBSSH2_SFTP_PACKET_MAXLEN: increase to 80000 - knownhost_check(): don't dereference ext if NULL is passed - knownhost_add: avoid dereferencing uninitialized memory on error path - OpenSSL EVP: fix threaded use of structs - _libssh2_channel_read: react on errors from receive_window_adjust - sftp_read: cap the read ahead maximum amount - _libssh2_channel_read: fix non-blocking window adjusting - Add upstream patch fixing undefined function reference in libgcrypt backend - BR: /usr/bin/man for test suiteepel9
parent
4256e1a18e
commit
d2c802f8e0
@ -1 +1 @@
|
|||||||
/libssh2-1.3.0.tar.gz
|
/libssh2-[0-9.]*.tar.gz
|
||||||
|
@ -0,0 +1,28 @@
|
|||||||
|
From b3ade9a63e881e69b4c9cfe7b5dbad78dcc4a0e0 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Peter Stuge <peter@stuge.se>
|
||||||
|
Date: Wed, 1 Feb 2012 09:53:44 +0100
|
||||||
|
Subject: [PATCH] Fix undefined reference to _libssh_error in libgcrypt
|
||||||
|
backend
|
||||||
|
|
||||||
|
Commit 209de22299b4b58e582891dfba70f57e1e0492db introduced a function
|
||||||
|
call to a non-existing function, and since then the libgcrypt backend
|
||||||
|
has not been buildable.
|
||||||
|
---
|
||||||
|
src/libgcrypt.c | 2 +-
|
||||||
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/libgcrypt.c b/src/libgcrypt.c
|
||||||
|
index 1bda5ee..5c2787b 100644
|
||||||
|
--- a/src/libgcrypt.c
|
||||||
|
+++ b/src/libgcrypt.c
|
||||||
|
@@ -581,7 +581,7 @@ _libssh2_pub_priv_keyfile(LIBSSH2_SESSION *session,
|
||||||
|
const char *privatekey,
|
||||||
|
const char *passphrase)
|
||||||
|
{
|
||||||
|
- return _libssh_error(session, LIBSSH2_ERROR_FILE,
|
||||||
|
+ return _libssh2_error(session, LIBSSH2_ERROR_FILE,
|
||||||
|
"Unable to extract public key from private key file: "
|
||||||
|
"Method unimplemented in libgcrypt backend");
|
||||||
|
}
|
||||||
|
--
|
||||||
|
1.7.6.1
|
Loading…
Reference in new issue